forked from lgollut/meteor-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"name": "meteor-starter-kit",
"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-cache-inmemory": "^1.1.0",
"apollo-client": "^2.0.2",
"apollo-link": "^1.0.3",
"bcrypt": "^0.8.7",
"classnames": "^2.2.5",
"graphql": "^0.11.0",
"graphql-subscriptions": "^0.5.4",
"graphql-tag": "^1.3.1",
"graphql-tools": "^2.7.2",
"invariant": "^2.2.1",
"meteor-node-stubs": "~0.2.0",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-apollo": "^1.0.0-rc.3",
"react-dom": "^15.4.2",
"redux": "^3.6.0",
"tracker-component": "^1.3.21"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.17.1",
"eslint-import-resolver-meteor": "^0.3.3",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-meteor": "4.0.0",
"eslint-plugin-no-unused-vars-rest": "^1.0.4",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.0",
"prettier": "^0.20.0"
}
}