-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.5 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
45
46
47
48
49
{
"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": "jest"
},
"dependencies": {
"apollo-client": "^1.0.0-rc.3",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"enzyme": "^2.9.1",
"express": "^4.14.0",
"graphql": "^0.9.0",
"graphql-server-express": "^0.6.0",
"graphql-subscriptions": "^0.3.1",
"graphql-tag": "^1.3.1",
"graphql-tools": "^0.11.0",
"invariant": "^2.2.1",
"jest": "^20.0.4",
"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",
"subscriptions-transport-ws": "^0.5.5-alpha.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",
"jest-meteor-stubs": "^1.5.1",
"prettier": "^0.20.0",
"react-addons-test-utils": "^15.6.0"
}
}