-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.26 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
{
"name": "countDownDevFest2021",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-webpack": "webpack --watch",
"start": "npm run start-webpack & npx serve",
"postinstall": "webpack",
"firebase": "firebase",
"clean": "del-cli dist/*",
"cp-core": "cpx \"index.html\" \"dist\" && cpx \"vendor/*.js\" \"dist/vendor\" && cpx \"bundle.js\" \"dist\" ",
"cp-assets": "cpx \"assets/**/*.{ogg,mid,midi}\" \"dist/assets\" && cpx \"css/*\" \"dist/css\" && cpx \"photos/*\" \"dist/photos\" ",
"build": "npm run clean && webpack && npm run cp-core && npm run cp-assets",
"deploy": "npm run build && firebase deploy --only hosting"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"firebase": "^8.6.8",
"opentype.js": "^1.3.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^8.2.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cpx": "^1.5.0",
"del-cli": "^4.0.0",
"firebase-functions": "^3.2.0",
"firebase-tools": "^9.14.0",
"serve": "^12.0.0",
"source-map-loader": "^3.0.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2"
}
}