-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "crm-app",
"version": "0.0.0",
"engines": {
"node": "18.0.0"
},
"scripts": {
"dev": "npm run build && nodemon server.js",
"serve": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint:script": "eslint --ext .ts,vue --ignore-path .gitignore .",
"test": "vitest",
"start": "node server.js"
},
"dependencies": {
"@testing-library/dom": "^8.14.0",
"@testing-library/jest-dom": "^5.16.4",
"express": "^4.18.1",
"uuid": "^8.3.2",
"vee-validate": "^4.5.11",
"vue": "^3.2.25",
"vue-router": "4"
},
"devDependencies": {
"@headlessui/vue": "^1.4.3",
"@heroicons/vue": "^1.0.5",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.0",
"@testing-library/user-event": "^14.2.1",
"@testing-library/vue": "^6.6.0",
"@types/node": "^18.0.0",
"@types/tailwindcss": "^3.0.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vitejs/plugin-vue": "^2.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.2",
"dotenv": "^16.0.1",
"eslint": "^8.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.3.0",
"jsdom": "^20.0.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"tailwindcss": "^3.0.15",
"typescript": "^4.5.5",
"vite": "^2.7.2",
"vitest": "^0.15.2",
"vue-tsc": "^0.29.8"
}
}