-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 778 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
{
"name": "battery-sim",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "http-server -c-1 . -p 8080",
"test:watch": "vitest --watch",
"test:ci": "vitest run --coverage",
"format": "prettier --write \"**/*.{js,mjs,json,md}\"",
"lint": "eslint . --ext .js,.mjs && prettier --check \"**/*.{js,mjs,json,md}\" && knip",
"lint:fix": "eslint . --ext .js,.mjs --fix && prettier --write \"**/*.{js,mjs,json,md}\""
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^8.57.1",
"http-server": "^14.1.1",
"jsdom": "^29.0.1",
"knip": "^6.1.0",
"prettier": "^3.8.1",
"vitest": "^4.1.1"
},
"optionalDependencies": {
"@rolldown/binding-win32-x64-msvc": "^1.0.0-rc.12"
}
}