forked from jeescu/meteor-react-admin-lte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "meteor-react-adminlte",
"private": true,
"version": "1.0.0",
"scripts": {
"start": "meteor run",
"test": "TEST_BROWSER_DRIVER=phantomjs meteor test --once --driver-package dispatch:mocha",
"test:watch": "TEST_WATCH=1 TEST_BROWSER_DRIVER=phantomjs meteor test --driver-package dispatch:mocha",
"lint": "eslint --ignore-path .eslintignore ."
},
"dependencies": {
"babel-runtime": "^6.23.0",
"classnames": "^2.2.5",
"meteor-node-stubs": "~0.2.0",
"react": "^15.4.2",
"react-addons-pure-render-mixin": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "3.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"enzyme": "^2.8.0",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.10.2",
"eslint-plugin-jsx-a11y": "1.5.5",
"eslint-plugin-react": "5.2.2",
"eslint-watch": "2.1.14",
"phantomjs-prebuilt": "^2.1.14",
"pre-commit": "^1.1.3",
"react-addons-test-utils": "^15.4.2"
},
"pre-commit": [
"lint"
]
}