-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 872 Bytes
/
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
{
"name": "accel-cube",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production rollup -c",
"watch": "NODE_ENV=development rollup -cw",
"serve": "serves dist/",
"start": "run-p watch serve",
"publish": "npm run build && gh-pages -d dist/"
},
"keywords": [],
"author": "kraftwerk28 <kefirchik3@gmail.com>",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-html": "^0.2.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"gh-pages": "^3.1.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.23.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-scss": "^2.5.0",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-visualizer": "^4.1.0",
"svelte": "^3.24.1"
}
}