-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 789 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 789 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
{
"name": "scoreboard",
"version": "1.2.2",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public",
"clean": "rm -rf public/build",
"remove:sm": "cd public/build/ && rm -rf *.map",
"to:now": "cd public/ && npx now --prod .",
"deploy": "npm run clean && npm run build && npm run remove:sm && npm run to:now"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"rollup": "^1.29.0",
"rollup-plugin-livereload": "^1.2.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^5.2.0",
"svelte": "^3.17.1"
},
"dependencies": {
"firebase": "^7.14.1",
"sirv-cli": "^0.4.5",
"svelte-notifications": "0.9.9"
}
}