-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.15 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
{
"license": "UNLICNSED",
"private": true,
"dependencies": {
"apollo-server-express": "^2.0.6",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-opentracing": "^0.1.1",
"graphql": "^14.0.2",
"graphql-extensions": "^0.1.3",
"jaeger-client": "^3.12.0",
"knex": "^0.15.2",
"objection": "^1.2.6"
},
"scripts": {
"prepare": "patch-package",
"prettier": "prettier --write \"src/**/*.js\"",
"prettier:list": "prettier --list-different \"src/**/*.js\"",
"start": "nodemon --exec ts-node --files ./src/index.ts",
"start:debug": "node --inspect ./node_modules/.bin/ts-node --files ./src/index.ts",
"start:debug:ndb": "ndb ./node_modules/.bin/ts-node --files ./src/index.ts",
"build": "tsc"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"bracketSpacing": false
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/graphql": "^14.0.0",
"jest": "^23.5.0",
"nodemon": "^1.18.4",
"patch-package": "^5.1.1",
"prettier": "^1.14.2",
"ts-jest": "^23.1.4",
"ts-node": "^7.0.1",
"typescript": "^3.0.3"
}
}