-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1023 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
31
32
33
34
35
36
{
"name": "haunted-game-client",
"version": "0.1.1",
"description": "A simple JS game client written using lit-html and haunted.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "rollup ./src/index.js --watch --config",
"build": "rollup ./src/index.js --config"
},
"keywords": [
"lit",
"haunted"
],
"author": "BeefOnWeck",
"license": "MIT",
"dependencies": {
"@shoelace-style/shoelace": "*",
"haunted": "^4.8.3",
"socket.io-client": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^4.0.0",
"@web/dev-server": "^0.1.30",
"dotenv": "^16.0.0",
"rollup": "^2.68.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-terser": "^7.0.2"
}
}