-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "tetromino",
"version": "0.0.26",
"private": "true",
"type": "module",
"scripts": {
"start": "bests --watch ./esDev.ts",
"sim:prod": "pnpm run build && http-server -c-1 dist",
"build": "bests ./esBuild.ts",
"deploy": "pnpm version patch && git push && git push --tags && ./serverLocalDeploy.sh",
"analyze": "bests ./esBuild.ts --meta && esbuild-visualizer --open --metadata ./dist/.meta.json --filename ./dist/.stats.html",
"server": "bests --watch ./server/main.node.ts"
},
"engines": {
"node": ">=20"
},
"engineStrict": true,
"devDependencies": {
"@chialab/esbuild-plugin-html": "benjamingwynn/esbuild-plugin-html",
"@types/mersenne-twister": "^1.1.7",
"@types/node": "20",
"@types/semver": "^7.5.8",
"badwords-list": "^1.0.0",
"bests": "benjamingwynn/bests",
"deep-profanity-filter": "^2.3.3",
"esbuild": "^0.20.2",
"esbuild-svelte": "^0.8.0",
"esbuild-visualizer": "^0.6.0",
"htmlnano": "^2.1.1",
"less": "^4.2.0",
"mersenne-twister": "^1.1.0",
"openai": "^4.47.1",
"prettier-plugin-svelte": "^3.2.3",
"semver": "^7.6.0",
"svelte": "^4.2.15",
"svelte-preprocess": "^5.1.4",
"typescript": "^5.4.5"
}
}