-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "machine-learning-pt1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "npm run build:dev",
"build:dev": "nodemon 'src/server.ts' --exec 'ts-node' src/server.ts -e ts,graphql"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.6",
"@types/graphql": "^14.5.0",
"@types/graphql-depth-limit": "^1.1.2",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@types/supertest": "^2.0.8",
"graphql-depth-limit": "^1.1.0",
"graphql-import": "^1.0.2",
"graphql-import-node": "0.0.4",
"graphql-tag": "^2.10.3",
"jest": "^25.5.2",
"jest-transform-graphql": "^2.1.0",
"nodemon": "^2.0.3",
"supertest": "^4.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.1",
"typescript": "^3.8.3"
},
"dependencies": {
"apollo-server-express": "^2.12.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^15.0.0",
"http": "0.0.1-security",
"ncp": "^2.0.0"
}
}