-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "es6-starter",
"version": "0.3.0",
"description": "",
"main": "public/bundle.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"build": "NODE_ENV=production webpack",
"lint": "eslint .",
"test": "NODE_ENV=test NODE_PATH=./src mocha",
"test-integration": "wdio ./wdio.config.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.7.6",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-react-require": "^2.1.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.0.0",
"enzyme": "^2.2.0",
"eslint": "^0.23.0",
"eslint-plugin-react": "^2.5.2",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"phantomjs": "^1.9.17",
"react-addons-test-utils": "^15.0.1",
"react-transform-catch-errors": "^1.0.1",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"sinon": "^1.15.3",
"webdriverio": "^3.2.3",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.9.0"
},
"dependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1"
}
}