-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.03 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "React-Webpack-Boilerplate",
"version": "1.0.0",
"description": "My Boilerplate",
"main": "src/index.js",
"scripts": {
"watch": "./node_modules/.bin/webpack --env=dev --watch",
"start": "./node_modules/.bin/webpack-dev-server --env=dev --open",
"build:dev": "./node_modules/.bin/webpack --env=dev --progress --profile --colors",
"build:prod": "./node_modules/.bin/webpack --env=prod --progress --profile --colors -p",
"test": "./node_modules/mocha/bin/mocha --recursive --require tests/setup.js --compilers js:babel-core/register tests/",
"test:watch": "./node_modules/mocha/bin/mocha --recursive --require tests/setup.js -w --compilers js:babel-core/register tests/"
},
"author": "Henrique Barroso",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chunk-manifest-webpack-plugin": "^1.1.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"ejs-loader": "^0.3.0",
"eslint-plugin-react": "^7.2.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-harddisk-plugin": "^0.1.0",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.5.3",
"redux-devtools": "^3.4.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglify-es": "^3.0.25",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.5.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"chai": "^4.1.1",
"enzyme": "^2.9.1",
"jsdom": "^11.1.0",
"lodash": "^4.17.4",
"loglevel": "^1.4.1",
"mocha": "^3.5.0",
"node-jsdom": "^3.1.5",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"repository": "[email protected]:hbarroso/react-webpack-boilerplate.git"
}