-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 702 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "staktrakr",
"private": true,
"version": "3.34.03",
"license": "MIT",
"type": "module",
"description": "Precious metals inventory tracker",
"scripts": {
"lint": "eslint js/*.js sw.js",
"lint:md": "bash devops/hooks/lint-markdown-changed.sh --staged",
"lint:md:changed": "bash devops/hooks/lint-markdown-changed.sh --changed",
"lint:md:all": "npx --yes markdownlint-cli --config .markdownlint.json \"**/*.md\" --ignore node_modules --ignore .git --ignore test-results",
"test": "npx playwright test",
"test:offline": "npx playwright test --grep-invert @network"
},
"devDependencies": {
"@playwright/test": "^1.51.0",
"eslint": "^9.21.0"
}
}