-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 956 Bytes
/
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
{
"name": "graphql-fs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"start:dev": "nodemon src/index.js",
"lint": "eslint 'src/**/*.js'",
"test": "jest",
"test:ci": "npm run test:0",
"test:0": "jest step-0.js",
"test:1": "jest \"step-[0-1].js\"",
"test:2": "jest \"step-[0-2].js\"",
"test:3": "jest \"step-[0-3].js\"",
"test:4": "jest \"step-[0-4].js\"",
"test:5": "jest \"step-[0-5].js\"",
"test:6": "jest \"step-[0-6].js\"",
"test:7": "jest \"step-[0-7].js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server": "^2.0.7",
"graphql": "^0.13.2",
"graphql-tools": "^3.1.1"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"jest": "^23.5.0",
"nodemon": "^1.18.3"
}
}