-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "Boiler plate to start React projects",
"main": "index.js",
"scripts": {
"test": "node_modules/karma/bin/karma start",
"build": "webpack --progress",
"serve": "webpack-dev-server --progress --inline --hot",
"start": "webpack -d --progress --watch"
},
"author": "Stijn Deschuymer",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.6.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"expect": "^1.14.0",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.2",
"karma-nyan-reporter": "^0.2.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.4",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-polyfill": "^6.6.1",
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}