-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"name": "@troup/server",
"private": true,
"version": "0.0.0",
"author": "[email protected]",
"repository": "[email protected]:troup-io/troup-server.git",
"license": "Apache 2.0",
"scripts": {
"bootstrap": "ts-node cmd bootstrap",
"reset": "ts-node cmd reset",
"dev": "nexus dev",
"build": "nexus build",
"start": "ts-node cmd app start",
"lint": "ts-node cmd app lint",
"cmd": "ts-node cmd"
},
"resolutions": {
"graphql": "14.6.0"
},
"dependencies": {
"apollo-server-express": "^2.14.2",
"bcryptjs": "2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.3",
"jsonwebtoken": "^8.5.1",
"nexus": "^0.24.2",
"nexus-plugin-prisma": "^0.10.0"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.5",
"@types/graphql": "^14.5.0",
"@types/graphql-depth-limit": "^1.1.2",
"@types/helmet": "^0.0.45",
"@types/jsonwebtoken": "^8.3.8",
"@types/node": "^13.13.1",
"@typescript-eslint/eslint-plugin": "2.20.0",
"@typescript-eslint/parser": "2.20.0",
"@zerollup/ts-transform-paths": "^1.7.12",
"concurrently": "^5.2.0",
"dotenv-cli": "3.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"graphql-voyager": "^1.0.0-rc.29",
"nodehawk": "^0.0.7",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"ts-node-dev": "^1.0.0-pre.44",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.10",
"typescript": "3.8.2",
"yarn-run-all": "3.1.1"
}
}