This repository has been archived by the owner on Jul 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.4 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
76
{
"name": "kitten-auth",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:script": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css,postcss,pcss}\" --ignore-path .gitignore",
"lint": "yarn lint:script && yarn lint:style",
"test:unit": "jest",
"test:unit+coverage": "jest --coverage"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/proxy": "^2.1.0",
"@pinia/nuxt": "^0.0.1",
"@tailwindcss/typography": "^0.4.1",
"@vueuse/integrations": "^6.0.0",
"animate.css": "^4.1.1",
"core-js": "^3.17.1",
"ms": "^2.1.3",
"nuxt": "^2.15.8",
"pinia": "^2.0.0-rc.6",
"vue-content-loader": "^0.2.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.0",
"@nuxt/image": "^0.5.0",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/composition-api": "^0.27.0",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^4.2.1",
"@testing-library/jest-dom": "^5.14.1",
"@types/jest": "^27.0.1",
"@types/ms": "^0.7.31",
"@types/node": "^16.7.10",
"@types/testing-library__jest-dom": "^5.14.1",
"@vue/compiler-sfc": "^3.2.7",
"@vue/runtime-dom": "^3.2.7",
"@vue/test-utils": "^1.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-testing-library": "^4.12.0",
"eslint-plugin-vue": "^7.17.0",
"jest": "^27.1.0",
"jest-transform-stub": "^2.0.0",
"lightcookie": "^1.0.25",
"nuxt-vite": "^0.2.2",
"postcss": "^8.3.6",
"postcss-nested": "^5.0.6",
"postcss-nested-ancestors": "^2.0.0",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-tailwindcss": "^0.0.1",
"stylelint-prettier": "^1.2.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"unplugin-auto-import": "^0.2.7",
"unplugin-vue2-script-setup": "^0.5.6",
"vue-jest": "^3.0.7",
"vue-tsc": "^0.3.0"
}
}