This repository was archived by the owner on Apr 28, 2024. It is now read-only.
forked from fdaciuk/conduit-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "conduit-api",
"version": "1.0.1",
"main": "index.js",
"repository": "git@github.com:fdaciuk/conduit-api.git",
"author": "Fernando Daciuk - @fdaciuk",
"license": "MIT",
"private": true,
"scripts": {
"start": "node dist/src/index.js",
"dev": "yarn docker:down && yarn docker:up && yarn server",
"server": "ts-node-dev --respawn --transpile-only src/index.ts",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:destroy": "docker-compose down --volumes --remove-orphans",
"migrate": "prisma migrate dev --name",
"migration": "prisma migrate dev",
"migration:prod": "prisma migrate deploy",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:integration": "jest --passWithNoTests --config jest.config.integration.js",
"test:integration:watch": "yarn test:integration --watch",
"test:api": "APIURL=http://localhost:3333/api ./src/config/tests/postman/run-api-tests.sh",
"lint": "eslint . --ext js,ts",
"lint:fix": "eslint --fix . --ext js,ts",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"prepare": "husky install",
"build": "tsc",
"ci": "yarn lint && yarn type-check && yarn test",
"update-deps": "sucrase-node ./src/config/update-deps.ts"
},
"dependencies": {
"@fastify/cors": "8.1.0",
"@prisma/client": "4.2.0",
"apollo-server": "3.10.0",
"argon2": "0.28.7",
"class-validator": "0.13.2",
"cors": "2.8.5",
"dotenv": "16.0.1",
"express": "4.18.1",
"fastify": "4.4.0",
"fp-ts": "2.12.2",
"graphql": "15",
"graphql-relay": "0.10.0",
"io-ts": "2.2.17",
"io-ts-types": "0.5.16",
"jose": "4.8.3",
"module-alias": "2.2.2",
"monocle-ts": "2.3.13",
"newtype-ts": "0.3.5",
"reflect-metadata": "0.1.13",
"slugify": "1.6.5",
"type-graphql": "1.1.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jest": "28.1.6",
"@types/module-alias": "2.0.1",
"@types/node": "18.6.5",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.8.2",
"eslint-plugin-n": "15.2.4",
"eslint-plugin-promise": "6.0.0",
"husky": "8.0.1",
"jest": "28.1.3",
"prettier": "2.8.8",
"prisma": "4.2.0",
"sucrase": "3.25.0",
"ts-jest": "28.0.7",
"ts-node-dev": "2.0.0",
"typescript": "4.7.4"
}
}