-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 885 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 885 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
36
{
"name": "sparrow",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"test": "vitest run --coverage",
"test:browser": "vitest --config=vitest.browser.config.js",
"prepare": "husky install",
"ci": "run-s test build"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.39.1",
"@vitest/browser-playwright": "^4.0.15",
"@vitest/coverage-v8": "4.0.15",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"husky": "^8.0.0",
"jsdom": "^27.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"vite": "^7.2.4",
"vitest": "^4.0.15"
}
}