-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 751 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 751 Bytes
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
{
"name": "clock",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack-dev-server --port 3005",
"heroku-postbuild": "yarn build",
"build": "yarn minify:js && yarn copy:html && yarn copy:css && yarn copy:fav",
"minify:js": "babel src -d dist",
"copy:html": "cp src/index.html dist",
"copy:css": "cp src/main.css dist",
"copy:fav": "cp src/favicon.png dist"
},
"prettier": {
"semi": false
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.4.3"
}
}