-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 KB
/
package.json
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
37
38
{
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs",
"lint": "eslint --ignore-path .gitignore --ext .ts,.js,.vue .",
"lintfix": "yarn lint --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"security": "yarn audit || [ $? -lt 16 ] #1-INFO 2-LOW 4-MODERATE 8-HIGH 16-CRITICAL",
"ci": "yarn install --immutable --immutable-cache --check-cache #npm ci equivalent",
"check:all": "yarn build && yarn security && yarn lint && yarn test run"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/test-utils": "^2.0.0-rc.21",
"autoprefixer": "^10.4.11",
"c8": "^7.12.0",
"eslint": "^8.23.1",
"eslint-plugin-prettier": "^4.2.1",
"jsdom": "^20.0.0",
"nuxt": "^3.11.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3",
"unplugin-auto-import": "^0.11.2",
"vitest": "^0.23.2"
},
"dependencies": {
"@headlessui/vue": "^1.7.1",
"@heroicons/vue": "^2.0.11"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}