-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 974 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
{
"private": true,
"scripts": {
"format:js": "prettier-eslint \"./src/**/*.js\" --write",
"lint:js": "eslint src",
"lint": "npm run lint:js",
"start": "nodemon src",
"start:prod": "cross-env NODE_ENV=production node src/index.js"
},
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"cross-env": "^5.1.1",
"envalid": "^4.1.1",
"express": "^4.16.2",
"graphql": "^0.11.7",
"graphql-server-express": "^1.2.0",
"graphql-subscriptions": "^0.5.4",
"graphql-tools": "^2.7.2",
"graphql-type-json": "^0.1.4",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"mongoose": "^4.13.1",
"paypal-rest-sdk": "^1.7.1",
"subscriptions-transport-ws": "^0.9.1"
},
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"nodemon": "^1.12.1",
"prettier-eslint": "^8.2.1",
"prettier-eslint-cli": "^4.4.0"
}
}