-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 956 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": "dungeon-boots",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "npx http-server",
"rollup": "rollup --config rollup.config.mjs",
"build": "npm run rollup",
"watch": "rollup --config rollup.config.mjs -w"
},
"author": "Luke Nickerson",
"license": "MIT",
"dependencies": {
"howler": "^2.2.3",
"keyboard-commander": "github:rocket-boots/keyboard-commander",
"rocket-boots-three-toolbox": "github:rocket-boots/rocket-boots-three-toolbox",
"rocket-utility-belt": "github:rocket-boots/rocket-utility-belt#v0.1.0",
"three": "^0.150.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"http-server": "^14.1.1",
"rocket-boots-eslint": "github:rocket-boots/rocket-boots-eslint",
"rollup": "^3.20.2"
}
}