-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 720 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 720 Bytes
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
{
"name": "tracker-graphql-server",
"version": "0.1.0",
"engines": {
"node": "^10.11.0"
},
"private": true,
"dependencies": {
"apollo": "^2.1.8",
"apollo-datasource-rest": "^0.2.1",
"apollo-server": "^2.14.2",
"dataloader": "^1.4.0",
"dotenv": "^6.2.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.0",
"graphql": "^14.0.2",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.2",
"nodemon": "^1.18.6",
"winston": "^3.2.1"
},
"scripts": {
"start": "node src/index.js"
},
"eslintConfig": {
"extends": "standard"
},
"devDependencies": {
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0"
}
}