-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.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
{
"name": "graphroots",
"version": "1.0.0",
"description": "Graph QL as a service",
"main": "index.js",
"repository": "https://dev.azure.com/roseitz/Graphroots",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./src/index.ts",
"dev:docker": "docker-compose -f docker-compose-dev.yml up",
"start": "node .",
"test": "jest --watch",
"test:ci": "jest"
},
"dependencies": {
"@azure/arm-appservice": "^5.7.0",
"@azure/arm-resources": "^1.1.0",
"@azure/ms-rest-nodeauth": "^2.0.2",
"@overnightjs/core": "^1.6.9",
"@overnightjs/logger": "^1.1.9",
"adm-zip": "^0.4.13",
"aws-sdk": "^2.512.0",
"connect-redis": "^3.4.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.5",
"express-session": "^1.16.2",
"express-validator": "^6.1.1",
"graphql": "^14.4.2",
"http-status-codes": "^1.3.2",
"lodash.map": "^4.6.0",
"mustache": "^3.0.1",
"node-fetch": "^2.6.0",
"swagger-ui-express": "^4.0.7"
},
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/aws-sdk": "^2.7.0",
"@types/connect-redis": "^0.0.10",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/express-fileupload": "^1.1.0",
"@types/express-session": "^1.15.13",
"@types/express-validator": "^3.0.0",
"@types/graphql": "^14.2.2",
"@types/jest": "^24.0.15",
"@types/lodash.map": "^4.6.13",
"@types/mustache": "^0.8.32",
"@types/node": "^12.0.8",
"@types/node-fetch": "^2.3.7",
"@types/supertest": "^2.0.8",
"@types/swagger-ui-express": "^3.0.1",
"jest": "^24.8.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.2"
}
}