-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "node-mongodb-graphql-typescript-boilerplate",
"version": "0.0.0",
"description": "Boilerplate to quick-start a scratch server using node, mongodb, apollo and graphql in TypeScript.",
"engines": {
"node": ">= 10.13 <11"
},
"scripts": {
"start": "nodemon exec",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"nodemonConfig": {
"exec": "ts-node bin/start"
},
"author": "Martin Scocco",
"license": "MIT",
"dependencies": {
"@types/graphql": "^14.0.5",
"@types/jest": "^23.3.12",
"@types/mongodb": "^3.1.19",
"@types/node": "^10.12.18",
"@types/npm": "^2.0.29",
"apollo-client": "^2.4.12",
"apollo-server": "^2.4.0",
"apollo-server-express": "^2.4.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"es6-promise": "^4.2.2",
"express": "^4.16.4",
"graphql": "^14.1.1",
"graphql-server-express": "^1.4.0",
"graphql-subscriptions": "^1.0.0",
"jest": "~23.6.0",
"mongodb": "^3.1.13",
"nodemon": "^1.18.10",
"prettier": "1.15.3",
"rimraf": "^2.6.3",
"subscriptions-transport-ws": "^0.9.15",
"ts-jest": "~23.10.5",
"ts-node": "^8.0.2",
"tslib": "^1.9.3",
"tslint": "~5.12.0",
"tslint-config-prettier": "1.17.0",
"tslint-microsoft-contrib": "~6.0.0",
"tsutils": "~3.7.0",
"typescript": "^3.3.3"
}
}