forked from mathieuancelin/react-workshop
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 936 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": "react-workshop",
"description": "React Workshop",
"version": "0.1.0",
"dependencies": {
"react": "0.14.7",
"react-dom": "0.14.7",
"react-router": "2.0.1",
"whatwg-fetch": "0.11.0"
},
"devDependencies": {
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-register": "6.7.2",
"chai": "3.5.0",
"enzyme": "2.2.0",
"eslint": "2.4.0",
"eslint-plugin-react": "4.2.3",
"jsdom": "8.1.0",
"mocha": "2.4.5",
"react-addons-test-utils": "0.14.7",
"sinon": "1.17.3",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
},
"scripts": {
"lint": "eslint src",
"test": "mocha --compilers js:babel-register tests/index.js",
"bundle": "webpack -p --colors --progress",
"start": "webpack-dev-server -d --colors --inline --content-base public",
"build": "npm run lint && npm run bundle"
}
}