-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "jest --watchAll --maxWorkers=1",
"test:push": "jest --maxWorkers=1",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{ts,js,vue}": [
"eslint ."
]
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.1",
"@babel/preset-env": "^7.20.2",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nuxt/postcss8": "^1.1.3",
"@nuxt/test-utils": "^3.0.0",
"@nuxtjs/tailwindcss": "^6.2.0",
"@pinia/testing": "^0.0.14",
"@types/jest": "^29.2.5",
"@vue/test-utils": "^2.2.6",
"@vue/vue3-jest": "^29.2.2",
"autoprefixer": "^10.4.13",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.3.1",
"eslint": "^8.32.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"nuxt": "3.1.1",
"postcss": "^8.4.20",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4",
"vue-jest": "^3.0.7",
"web-component-ywlee": "^0.0.16"
},
"dependencies": {
"@pinia/nuxt": "^0.4.6",
"@types/qs": "^6.9.7",
"pinia": "^2.0.29",
"qs": "^6.11.0"
},
"description": "nuxt3+tailwind+jest",
"author": "LeeYoungWoo(https://zestlee.tistory.com/)",
"keywords": [
"nuxt3",
"tailwind",
"jest"
]
}