-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "typescript",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "npm run build:live",
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./index",
"compile": "tsc",
"test": "./node_modules/.bin/mocha --timeout 15000 --compilers ts:ts-node/register ./test/**/*.ts"
},
"dependencies": {
"graphql": "^0.11.4",
"graphql-fields": "^1.0.2",
"ioredis": "^3.1.1",
"qs": "^6.5.1",
"superagent": "^3.6.0"
},
"devDependencies": {
"@types/body-parser": "^1.16.5",
"@types/chai": "^4.0.4",
"@types/es6-shim": "^0.31.35",
"@types/express": "^4.0.37",
"@types/express-graphql": "^0.0.34",
"@types/graphql": "^0.11.4",
"@types/ioredis": "^0.0.25",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.31",
"@types/superagent": "^3.5.5",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"express": "^4.16.0",
"express-graphql": "^0.6.11",
"mocha": "^3.5.3",
"nodemon": "^1.12.1",
"sinon": "^4.0.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
}
}