-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 2.5 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
77
78
79
80
{
"name": "front",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"typecheck": "vue-tsc --noEmit",
"build": "yarn typecheck && vite build",
"build:staging": "vite build --mode staging",
"build:production": "yarn typecheck && SOURCE_MAP=1 vite build",
"preview": "yarn build && vite preview --port 8080",
"format": "prettier ./src --check",
"format:fix": "prettier ./src --write",
"lint": "eslint --ext .ts,.tsx,.vue ./src",
"lint:fix": "yarn lint --fix",
"test": "jest",
"apigen": "rm -rf src/infrastructure/api/aspida && npx openapi2aspida",
"prepare": "husky install && rimraf ./node_modules/@types/react",
"storybook": "start-storybook -p 6006",
"build-storybook": "yarn typecheck && build-storybook"
},
"dependencies": {
"@aspida/axios": "^1.12.0",
"@gtm-support/vue-gtm": "^2.0.0",
"@sentry/rollup-plugin": "^0.4.0",
"@sentry/tracing": "^7.16.0",
"@sentry/vue": "^7.16.0",
"@types/lodash": "^4.14.184",
"@types/qs": "^6.9.6",
"@unocss/reset": "^0.50.1",
"@vueuse/core": "^9.12.0",
"@vueuse/head": "^1.0.24",
"aspida": "^1.6.3",
"axios": "^1.4.0",
"core-js": "^3.33.0",
"dayjs": "^1.10.4",
"firebase": "^8.3.2",
"lodash": "^4.17.21",
"qs": "^6.10.1",
"vue": "^3.2.45",
"vue-router": "4.1.6",
"vue3-click-away": "^1.2.4",
"vuedraggable": "^4.1.0",
"vuex": "4.1.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.1",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/vue3": "^6.4.19",
"@types/jest": "29.4.0",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-vue": "4.0.0",
"@vue/compiler-sfc": "3.2.47",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"esbuild-jest": "0.5.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-vue": "9.15.0",
"husky": "8.0.3",
"jest": "29.4.2",
"lint-staged": "^13.2.2",
"prettier": "2.2.1",
"rollup": "^3.15.0",
"sass": "1.62.1",
"storybook-builder-vite": "^0.1.21",
"ts-node": "10.9.1",
"typescript": "^4.6.2",
"vite": "4.3.9",
"vite-plugin-fonts": "^0.7.0",
"vue-eslint-parser": "9.1.0",
"vue-tsc": "^1.0.24"
}
}