-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/index.ts\"",
"build": "tsc",
"test": "jest",
"postinstall": "node-config-ts"
},
"author": "Cerbos Developers",
"license": "Apache-2.0",
"dependencies": {
"@apollo/server": "^4.10.0",
"@cerbos/grpc": "^0.16.0",
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"express": "^4.18.2",
"graphql": "^16.8.1",
"graphql-scalars": "^1.22.4",
"node-config-ts": "^3.1.0",
"normalize-url": ">=4.5.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^2.0.0-beta.3",
"typedi": "^0.10.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/graphql": "^14.5.0",
"@types/node": "^12.20.4",
"@types/uuid": "^8.3.0",
"jest": "^27.2.4",
"nodemon": "^3.1.0",
"ts-jest": "^27.0.5",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.1.6",
"tslint": "^6.1.3",
"tslint-no-circular-imports": "^0.7.0",
"typescript": "^4.1.5"
}
}