-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.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
63
64
65
66
67
68
69
70
{
"name": "japan",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview tcp:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"linter:code": "eslint --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore --cache --cache-location node_modules/.cache/eslint/.eslintcache --max-warnings 0",
"lint:code": "yarn linter:code .",
"lint:code:fix": "yarn linter:code --fix .",
"linter:style": "stylelint --ignore-path .gitignore --cache --cache-location node_modules/.cache/stylelint/.stylelintcache --max-warnings 0",
"lint:style": "yarn linter:style \"src/**/*.{css,vue}\"",
"lint:style:fix": "yarn linter:style --fix \"src/**/*.{css,vue}\"",
"formatter": "prettier --cache --ignore-unknown",
"format": "yarn formatter --check src/",
"format:fix": "yarn formatter --write src/",
"prepare": "husky install"
},
"dependencies": {
"@vueuse/core": "^10.2.0",
"@vueuse/integrations": "^10.2.0",
"axios": "^1.4.0",
"chart.js": "^4.3.0",
"pinia": "^2.1.3",
"vue": "^3.3.4",
"vue-chartjs": "^5.2.0",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@faker-js/faker": "^8.0.2",
"@pinia/testing": "^0.1.2",
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^2.0.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.16.17",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-airbnb-with-typescript": "^7.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "^0.4.0",
"cypress": "^12.14.0",
"eslint": "^8.39.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-vue": "^9.11.0",
"husky": "^6.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.5.0",
"prettier": "^2.8.8",
"start-server-and-test": "^2.0.0",
"stylelint": "^15.7.0",
"stylelint-config-clean-order": "^5.0.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^33.0.0",
"typescript": "~5.0.4",
"vite": "^4.3.9",
"vitest": "^0.32.0",
"vue-tsc": "^1.6.5"
}
}