-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 810 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"private": true,
"scripts": {
"lint": "eslint .",
"lint:inspect": "npx @eslint/config-inspector@latest",
"lint:commit": "npx eslint $(find $(git diff --diff-filter=d --name-only --cached | xargs) -type f -name \"*.ts\") --no-error-on-unmatched-pattern",
"lint:fix": "npx eslint . --fix",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run -c ./tests/unit/vitest.config.ts",
"test:e2e": "cypress open -C ./tests/e2e/cypress.config.ts",
"test:e2e:headless": "cypress run -C ./tests/e2e/cypress.config.ts"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.5.7",
"cross-fetch": "^4.0.0",
"cypress": "^12.9.0",
"eslint": "^9.10.0",
"eslint-plugin-tailwindcss": "^3.11.0",
"typescript": "^5.0.2",
"vitest": "^0.29.8"
}
}