-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "GraphQL_API",
"private": true,
"scripts": {
"start": "meteor run",
"lint": "eslint --quiet --ext .js,.jsx .",
"prettier": "prettier --write \"client/**/*.js\" \"imports/**/*.js\" \"server/**/*.js\" --single-quote=true --trailing-comma=es5 --print-width=100",
"test": "npm run lint"
},
"dependencies": {
"apollo-client": "^1.9.2",
"babel-runtime": "^6.20.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"busboy": "^0.2.14",
"cors": "^2.8.4",
"express": "^4.15.4",
"graphql": "^0.11.3",
"graphql-loader": "^1.2.1",
"graphql-schema-modules": "0.0.2",
"graphql-server-express": "^1.1.2",
"graphql-subscriptions": "^0.5.1",
"graphql-tag": "^2.4.2",
"graphql-tools": "^1.2.2",
"invariant": "^2.2.2",
"lodash": "^4.17.4",
"meteor-node-stubs": "~0.2.4",
"subscriptions-transport-ws": "^0.9.0"
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"eslint": "^4.6.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-meteor": "^4.1.4",
"eslint-plugin-no-unused-vars-rest": "^1.0.6",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.3.0",
"prettier": "^1.6.1"
}
}