-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.6 KB
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
{
"name": "dwebble",
"version": "0.0.0",
"description": "dwebble is a webpack workflow",
"main": "App/app.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --content-base config/dev-server-public --config config/webpack-dev-server.config.js --progress --colors --port 8080",
"hot": "webpack-dev-server --content-base config/dev-server-public --config config/webpack-hot-dev-server.config.js --hot --progress --colors --port 8080",
"build": "webpack --config config/webpack-production.config.js --progress --profile --colors",
"deploy": "webpack --config config/webpack-production.config.js --progress --profile --colors && gulp",
"start": "node lib/server"
},
"keywords": [
"webpack",
"react",
"starter",
"boilerplate",
"hot"
],
"author": "Measured, appropriated from react-starter by Tobias Koppers @sokra",
"license": "MIT",
"dependencies": {
"autoprefixer-loader": "^1.0.0",
"css-loader": "^0.7.0",
"express": "^4.7.2",
"extract-text-webpack-plugin": "^0.2.3",
"file-loader": "^0.8.1",
"gulp": "^3.8.10",
"gulp-s3": "^0.3.0",
"html-loader": "^0.2.2",
"jsx-loader": "^0.12.2",
"lodash": "^2.4.1",
"null-loader": "^0.1.0",
"raw-loader": "^0.5.1",
"react": "^0.12.0",
"react-hot-loader": "^0.5.0",
"react-proxy-loader": "^0.2.1",
"react-router": "^0.11.1",
"reflux": "^0.2.1",
"sass-loader": "0.3.1",
"style-loader": "0.6.5",
"url-loader": "^0.5.5",
"webpack": "^1.3.2-beta9",
"webpack-dev-server": "^1.4.7",
"xhr": "^1.17.0"
}
}