-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1008 Bytes
/
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
{
"name": "trent",
"private": true,
"scripts": {
"start": "meteor run",
"test": "npm run lint && chimp --mocha --path=tests --browser=phantomjs",
"lint": "eslint . --ext .jsx,.js",
"lint:quiet": "eslint . --ext .jsx,.js || true",
"fix": "eslint . --ext .jsx,.js --fix",
"watch": "chimp --ddp=http://localhost:3000 --watch --mocha --path=tests"
},
"dependencies": {
"lodash": "^4.13.1",
"meteor-node-stubs": "~0.2.0",
"param-store": "^1.0.0",
"react": "^15.1.0",
"react-addons-pure-render-mixin": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-super-components": "^1.0.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"faker": "^3.1.0",
"mocha": "^2.5.3",
"react-addons-test-utils": "^15.1.0"
}
}