-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 947 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
{
"scripts": {
"test": "concurrently \"cd playground && npm run test -- --run \" \"cd utils && npm run test -- --run \"",
"test:coverage": "concurrently \"cd playground && npm run test -- run --coverage\" \"cd utils && npm run test -- run --coverage\"",
"lint:check": "npm run lint -- --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint . --ext js",
"format:write": "npm run format -- --write",
"format:check": "npm run format -- --check",
"format": "prettier './**/*.js'",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@vitest/coverage-v8": "^2.0.3",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.1",
"prettier": "3.3.2",
"vitest": "^2.0.1"
}
}