-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 971 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": "zomboban",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "NODE_ENV=test ts-node --transpileOnly --esm --experimentalSpecifierResolution=node test.ts",
"test-dev": "NODE_OPTIONS=\"--max_old_space_size=8192\" NODE_ENV=test nodemon --transpileOnly --experimentalSpecifierResolution=node test.ts -w \"src/**/*.ts\"",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.7",
"@types/pixi.js": "^5.0.0",
"glob": "^10.3.10",
"parcel": "^2.10.0",
"prettier": "^3.0.3",
"process": "^0.11.10",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"ts-node": "^10.9.1",
"nodemon": "^3.0.1"
},
"dependencies": {
"lodash": "^4.17.21",
"pixi.js": "^7.3.2"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node-esm"
}
}
}