-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 989 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
35
{
"name": "firstapp",
"version": "1.0.0",
"description": "Sample app for learning",
"main": "index.js",
"scripts": {
"prerestart": "npm install",
"start": "npm run webpack",
"webpack": "webpack",
"test": "mocha -w test/helpers/browser.js test/*.test.js --compilers js:babel-core/register",
"devServer": "webpack-dev-server --content-base build/"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"enzyme": "^2.7.1",
"expect": "^1.20.2",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"redux": "^3.6.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
}
}