-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "online-store",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"dev:server": "esno ./server/index.js",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"type-check:watch": "vue-tsc --noEmit --watch",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@formkit/themes": "1.0.0-beta.15",
"@formkit/vue": "1.0.0-beta.15",
"@vueuse/components": "^9.3.1",
"@vueuse/core": "^9.3.1",
"animate.css": "^4.1.1",
"floating-vue": "2.0.0-beta.20",
"fzf": "^0.5.1",
"lodash-es": "^4.17.21",
"pinia": "^2.0.21",
"vee-validate": "^4.7.3",
"vue": "^3.2.45",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.3",
"@iconify/json": "^2.1.107",
"@koa/cors": "^4.0.0",
"@rushstack/eslint-patch": "^1.1.4",
"@types/lodash-es": "^4.17.6",
"@types/node": "^16.11.56",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/compiler-sfc": "^3.2.45",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.22.0",
"esno": "^0.16.3",
"json-server": "^0.17.1",
"koa": "^2.14.1",
"koa-body": "^6.0.1",
"koa-router": "^12.0.0",
"npm-run-all": "^4.1.5",
"sass": "^1.54.9",
"typescript": "~4.7.4",
"unplugin-auto-import": "^0.11.2",
"unplugin-icons": "^0.14.9",
"unplugin-vue-components": "^0.22.7",
"vite": "^3.0.9",
"vue-tsc": "^1.0.24"
}
}