-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.57 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
{
"name": "testpyco",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "webpack-dev-server --progress --colors --hot --inline",
"start:dev": "webpack-dev-server --config ./webpack.dev.config.js --progress --colors",
"build:dev": "webpack --config ./webpack.dev.config.js --progress --colors",
"build": "webpack -p --config ./webpack.prod.config.js --progress --colors",
"copy": "cp index.html dist/",
"heroku-postbuild": "npm run build:dev && npm run copy"
},
"author": "datphamba.013@gmail.com",
"license": "ISC",
"devDependencies": {
"babel-core": "6.24.1",
"babel-loader": "7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"bootstrap-sass": "3.3.7",
"css-hot-loader": "1.1.1",
"css-loader": "0.28.4",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.2",
"node-sass": "4.5.3",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-hot-loader": "3.0.0-beta.7",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "0.5.8",
"webpack": "2.6.1",
"webpack-dev-server": "2.4.5"
},
"dependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"bootstrap": "^4.3.1",
"react-bootstrap": "^1.0.0-beta.9",
"react-infinite-scroller": "^1.2.4",
"react-polling": "^1.0.5",
"react-toastify": "^5.3.0",
"serve": "^11.0.2",
"uuid": "^3.3.2",
"write-json-file": "^4.1.0"
}
}