-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 802 Bytes
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
{
"name": "gol-rx",
"version": "1.0.0",
"description": "",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"lint": "prettier --check .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"pixi.js": "^7.4.3",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"vite": "^6.3.5"
},
"lint-staged": {
"*.{js,mjs,html,css,md}": "prettier --write"
}
}