This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.31 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"private": true,
"engines": {
"node": ">=16.14.2",
"npm": ">=8.5.0"
},
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "NODE_ENV=production node .output/server/index.mjs",
"lint": "npm-run-all lint:*",
"lint:types": "nuxi typecheck",
"lint:style": "eslint .",
"test": "npm-run-all postinstall && TZ=UTC vitest --run",
"test:watch": "npm-run-all postinstall && TZ=UTC vitest",
"test:ui": "npm-run-all postinstall && TZ=UTC vitest --ui",
"prepare": "husky install",
"postinstall": "nuxi prepare",
"story": "histoire dev",
"story:build": "histoire build",
"generate": "nuxi generate && rm -rf docs && mv .output/public docs && touch docs/.nojekyll && cp CNAME docs/"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"@sidestream-tech/nuxt-sidebase-parse": "^0.2.6",
"@vueuse/core": "^9.2.0",
"aos": "^2.3.4",
"sqlite3": "^5.1.1",
"typeorm": "^0.3.9"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@babel/core": "^7.18.2",
"@faker-js/faker": "^7.5.0",
"@histoire/plugin-nuxt": "^0.10.7",
"@histoire/plugin-vue": "^0.10.7",
"@nuxt/content": "^2.1.1",
"@nuxtjs/tailwindcss": "^5.3.2",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/vue": "^6.6.1",
"@types/aos": "^3.0.4",
"@types/node": "^18.7.18",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-vue": "^3.0.3",
"@vitest/coverage-c8": "^0.23.2",
"@vitest/ui": "^0.23.2",
"ant-design-vue": "^3.2.12",
"babel-loader": "^8.2.4",
"eslint": "^8.23.0",
"eslint-plugin-tailwindcss": "^3.6.2",
"eslint-plugin-vue": "^9.4.0",
"histoire": "^0.10.7",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.1",
"npm-run-all": "^4.1.5",
"nuxt": "^3.0.0-rc.10",
"sass": "^1.54.9",
"supertest": "^6.2.4",
"unplugin-auto-import": "^0.11.2",
"unplugin-vue-components": "^0.22.4",
"vite-plugin-eslint": "^1.8.1",
"vite-svg-loader": "^3.5.1",
"vitest": "^0.23.2",
"vue": "^3.2.38",
"vue-loader": "^17.0.0",
"vue-tsc": "^0.40.9"
},
"lint-staged": {
"*{.js,.ts,.vue}": "eslint --fix ."
}
}