-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.35 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
{
"name": "swapica-landing",
"version": "1.0.0-rc.11",
"gitHooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test && yarn rsc"
},
"scripts": {
"vite-dev-server": "vite",
"vite-build": "vite build",
"start": "cross-env VITE_APP_ENVIRONMENT=development yarn vite-dev-server",
"build": "cross-env VITE_APP_ENVIRONMENT=production yarn vite-build",
"analyze": "cross-env VITE_APP_ENVIRONMENT=analyze yarn vite-build",
"test": "yarn test:unit",
"test:unit": "vitest run",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:styles": "stylelint \"src/**/*.{vue,scss,css}\" --max-warnings=0",
"lint:scripts": "eslint \"{src,config}/**/*.{vue,js,ts}\" --cache --fix --max-warnings=0",
"preview": "vite preview",
"rsc": "node scripts/release-sanity-check.mjs"
},
"dependencies": {
"@vueuse/core": "^9.1.1",
"body-scroll-lock": "v3.1.5",
"lodash-es": "^4.17.21",
"loglevel": "^1.8.0",
"postcss": "^8.4.16",
"vue": "^3.2.38",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@mapbox/stylelint-processor-arbitrary-tags": "^0.4.0",
"@rushstack/eslint-patch": "^1.1.3",
"@types/body-scroll-lock": "^3.1.0",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.7.14",
"@types/vuelidate": "^0.7.15",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.0-rc.18",
"chalk": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "8.22.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-vue": "^9.4.0",
"eslint-plugin-vue-i18n": "^0.3.0",
"happy-dom": "^6.0.4",
"prettier": "^2.5.1",
"rollup-plugin-visualizer": "^5.8.0",
"sass": "^1.54.7",
"stylelint": "^14.11.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-declaration-strict-value": "^1.8.0",
"stylelint-scss": "^4.1.0",
"typechain": "^8.1.0",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-checker": "^0.5.0",
"vite-plugin-svg-icons": "^2.0.1",
"vitest": "^0.22.1",
"vue-eslint-parser": "^9.0.2",
"yorkie": "^2.0.0"
}
}