-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "noxious-nebula",
"version": "1.0.0",
"author": "Daniel Whiffing <[email protected]>",
"license": "MIT",
"homepage": "https://dwhiffing.github.io/noxious-nebula",
"scripts": {
"dev": "yarn clean; rollup -w -c rollup.config.js",
"build": "yarn clean; NODE_ENV=production rollup -c rollup.config.js",
"clean": "rm -rf dist; mkdir dist",
"postbuild": "node postbuild.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"kontra": "^8.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"archiver": "^5.3.1",
"esbuild": "^0.15.5",
"gh-pages": "^4.0.0",
"html-minifier": "^4.0.0",
"prettier": "^2.1.1",
"rollup": "^2.78.1",
"rollup-plugin-esbuild": "^4.9.3",
"rollup-plugin-html-bundle": "^0.0.3",
"rollup-plugin-kontra": "^1.0.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.0.2"
}
}