-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.26 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": "react-template",
"version": "1.0.0",
"description": "Blank set up for new React Project with webpack and testing runner included",
"main": "index.js",
"scripts": {
"dev:test": "./node_modules/.bin/webpack --config webpack.test.config.js",
"test:bundle": "./node_modules/.bin/tape test/bundle.js",
"dev:serve": "./node_modules/.bin/webpack-dev-server --config webpack.development.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrans/React-Webpack-Set-Up.git"
},
"keywords": [
"React",
"Webpack",
"Hot Loading",
"Test Runner",
"ES6",
"Babel",
"tape"
],
"author": "jrans",
"license": "ISC",
"bugs": {
"url": "https://github.com/jrans/React-Webpack-Set-Up/issues"
},
"homepage": "https://github.com/jrans/React-Webpack-Set-Up#readme",
"devDependencies": {
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "^0.23.1",
"on-build-webpack": "^0.1.0",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"tape": "^4.4.0",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
}
}