-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
{
"name": "ioupg-reborn",
"version": "0.0.0",
"private": true,
"type": "module",
"source": "src/index.html",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "npx jest",
"test:ci": "npx jest --runInBand",
"lint": "npx eslint src",
"lint:fix": "npx eslint --fix src",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"prepare": "npx husky init"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"pixi.js": "^8.8.0"
}
}