-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 875 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 875 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
{
"name": "el-rata-alada",
"version": "1.0.0",
"description": "Chat application",
"main": "app/main.js",
"scripts": {
"clean": "rimraf dist",
"copy-assets": "cpx \"{index.html,info.html,styles.css,favicon.ico,manifest.json,sw.js,listo.ico,listoi.ico,listomas.ico,listomiu.ico}\" dist && cpx \"images/**/*\" dist/images",
"build-js": "esbuild app/main.js --bundle --outfile=dist/main.js --minify --format=esm",
"build": "npm run clean && npm run copy-assets && npm run build-js",
"watch": "esbuild app/main.js --bundle --outfile=dist/main.js --format=esm --sourcemap --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"crypto-js": "^4.2.0",
"esbuild": "^0.27.2",
"firebase": "^12.7.0",
"firebase-admin": "^13.6.0"
},
"devDependencies": {
"cpx": "^1.5.0",
"rimraf": "^5.0.10"
}
}