-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 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
41
42
43
44
{
"name": "cat-api",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"format": "prettier --write '**/*.{js,css,md}'",
"lint": "eslint . --cache --fix",
"test": "run-p --race start cy:run",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"now": {
"alias": [
"cat.reactjsgirls.com",
"catis.life",
"www.catis.life"
]
},
"dependencies": {
"apollo-server-express": "1.4.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"fast-glob": "^2.2.2",
"graphql": "0.13.0",
"graphql-playground-middleware-express": "^1.7.3",
"graphql-tools": "^4.0.0",
"jimp": "^0.5.3"
},
"devDependencies": {
"cypress": "^3.1.0",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.4",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3"
}
}