-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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
50
51
52
53
54
{
"name": "react-redux-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "standard && mocha --compilers js:babel-core/register --require ./test/test_helper.js 'test/**/*.@(js|jsx)'",
"test:watch": "npm run test -- --watch --watch-extensions jsx",
"start": "webpack-dev-server --devtool eval --progress --colors --watch",
"server": "node server",
"build": "NODE_ENV=production webpack -p"
},
"author": "Talkdesk",
"private": true,
"license": "MIT",
"devDependencies": {
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"chai": "^3.3.0",
"chai-immutable": "^1.3.0",
"css-loader": "^0.21.0",
"jsdom": "^7.0.1",
"mocha": "^2.3.3",
"react-addons-test-utils": "^0.14.2",
"react-hot-loader": "^1.3.0",
"standard": "^5.3.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"classnames": "^2.2.0",
"httpdispatcher": "^0.4.0",
"immutable": "^3.7.5",
"isomorphic-fetch": "^2.2.0",
"lodash.uniq": "^3.2.2",
"random-js": "^1.0.8",
"react": "^0.14.0",
"react-addons-pure-render-mixin": "^0.14.0",
"react-dom": "^0.14.0",
"react-redux": "^4.0.0",
"redux": "^3.0.3",
"redux-immutablejs": "0.0.7",
"redux-thunk": "^1.0.0",
"twitter": "^1.2.5"
},
"standard": {
"globals": [
"it",
"xit",
"describe"
]
}
}