forked from tushar21/meteor-react-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "meteor-react-demo",
"private": true,
"version": "2.0.0",
"scripts": {
"start": "set MONGO_URL=mongodb://127.0.0.1:27017 && meteor run",
"test": "TEST_BROWSER_DRIVER=phantomjs meteor test --once --driver-package meteortesting:mocha",
"test:watch": "TEST_BROWSER_DRIVER=phantomjs TEST_WATCH=1 meteor test --driver-package meteortesting:mocha",
"lint": "eslint --ignore-path .eslintignore ."
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.55",
"babel-runtime": "^6.23.0",
"bcrypt": "^1.0.3",
"classnames": "^2.2.5",
"meteor-node-stubs": "~0.3.3",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-addons-pure-render-mixin": "^15.1.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "4.18.2",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"eslint-watch": "3.1.3",
"phantomjs-prebuilt": "^2.1.16",
"pre-commit": "^1.1.3",
"react-addons-test-utils": "^15.4.2"
},
"pre-commit": [
"lint"
]
}