-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 992 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.0.0",
"dependencies": {
"react": "0.14.3",
"react-dom": "0.14.3",
"uuid": "2.0.1",
"react-addons-css-transition-group": "0.14.3",
"marked": "0.3.5",
"react-chartjs": "0.6.0"
},
"devDependencies": {
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0",
"babel-loader": "6.2.0",
"babel-preset-es2015": "6.1.18",
"babel-preset-react": "6.1.18",
"babel-register": "6.3.13",
"eslint": "1.10.3",
"eslint-plugin-react": "3.11.3",
"jsdom": "7.2.0",
"mocha": "2.3.4",
"chai": "3.4.1",
"react-addons-test-utils": "0.14.3"
},
"scripts": {
"lint": "eslint src tests",
"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 test && npm run lint && npm run bundle"
}
}