-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "chunk",
"version": "0.0.1",
"author": "Philippe Tessier <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nodemon",
"lint": "run-s -s lint:ts lint:tslint",
"lint:ts": "tsc --noEmit --skipLibCheck",
"lint:tslint": "tslint -e '**/node_modules/**' --project tsconfig.json",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"prettier": "prettier --write --ignore-path .prettierignore '**/*.{js,jsx,json,md,ts,tsx}'"
},
"dependencies": {
"@graphql-tools/load-files": "^6.2.0",
"@graphql-tools/merge": "^6.2.0",
"@graphql-tools/schema": "^6.2.0",
"@prisma/client": "2.6.2",
"apollo-errors": "^1.9.0",
"apollo-resolvers": "^1.4.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express-pino-logger": "^5.0.0",
"graphql-yoga": "^1.18.3",
"helmet": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"nconf": "^0.10.0",
"pino": "^6.5.1",
"validator": "^13.1.1"
},
"devDependencies": {
"@prisma/cli": "2.6.2",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/express-pino-logger": "^4.0.2",
"@types/helmet": "^0.0.48",
"@types/jsonwebtoken": "^8.5.0",
"@types/nconf": "^0.10.0",
"@types/node": "^14.6.3",
"@types/pino": "^6.3.0",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.2",
"yarn-run-all": "^3.1.1"
}
}