-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.69 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
49
50
51
52
53
54
55
56
57
{
"name": "wk-06-react-blog",
"version": "1.0.0",
"description": "Assignment for week six",
"main": "index.js",
"scripts": {
"webpack:dev": "webpack -d",
"copy": "cp src/index.html dist/index.html && cp -R src/app/images dist/app",
"dev": "npm run webpack:dev && npm run copy && webpack-dev-server --content-base src/ --inline --hot",
"dev:no-hot": "npm run webpack:dev && npm run copy && webpack-dev-server --content-base src/ --inline",
"dev:start": "npm run webpack:dev && npm run copy && npm start",
"postinstall": "webpack -p && npm run copy",
"prod:start": "npm run postinstall && npm start",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Joni Weiss <me@joniweiss.com> (http://joniweiss.com)",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"firebase": "^3.6.1",
"import": "0.0.6",
"jquery": "^3.1.1",
"json-loader": "^0.5.4",
"lodash": "^4.17.2",
"loopobject": "^1.1.0",
"material-ui": "^0.16.4",
"moment": "^2.17.0",
"node-sass": "^3.10.1",
"re-base": "^2.4.0",
"react": "^15.4.1",
"react-custom-scrollbars": "^4.0.0",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^4.0.0-alpha.5",
"react-tap-event-plugin": "^2.0.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.3"
}
}