-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "marbleblast",
"version": "1.0.0",
"description": "A full web port of Marble Blast Gold.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "rollup -c -w",
"watch-fast": "rollup -c -w --config rollup-fast.config.js",
"compile": "rollup -c",
"bundle": "node create_bundle.js",
"build": "npm run lint && npm run compile && npm run bundle",
"start": "node server/bundle.js",
"lint": "npx eslint src/ts/**/*.ts server/ts/**/*.ts"
},
"author": "Vanilagy",
"license": "ISC",
"dependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/adm-zip": "^0.4.33",
"@types/better-sqlite3": "^5.4.1",
"@types/dom-screen-wake-lock": "^1.0.0",
"@types/dom-webcodecs": "^0.1.4",
"@types/finalhandler": "^1.1.0",
"@types/fs-extra": "^9.0.7",
"@types/jszip": "^3.4.1",
"@types/node": "^20.6.4",
"@types/node-fetch": "^2.5.8",
"@types/serve-static": "^1.13.9",
"@types/wicg-file-system-access": "^2020.9.5",
"@types/write-file-atomic": "^4.0.0",
"better-sqlite3": "^8.0.1",
"finalhandler": "^1.1.2",
"fs-extra": "^9.1.0",
"jszip": "^3.6.0",
"node-fetch": "^2.6.1",
"rollup": "2.0.0",
"rollup-plugin-external-globals": "^0.6.0",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"sarcina": "^1.7.6",
"serve-static": "^1.14.1",
"typescript": "^4.8.4",
"write-file-atomic": "^5.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0"
}
}