-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.17 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": "vue-3-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"test:unit": "cypress open-ct",
"test:unit:ci": "cypress run-ct --quiet --reporter spec",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"cypress": "cypress run",
"lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@dmitryrazinkov/svg-icon": "^1.0.5",
"@dmitryrazinkov/tokens": "^1.2.4",
"@dmitryrazinkov/input": "^1.2.7",
"@dmitryrazinkov/error": "^1.1.3",
"@dmitryrazinkov/field": "^1.1.4",
"@dmitryrazinkov/mixins": "^1.0.3",
"@dmitryrazinkov/button": "^1.1.3",
"@dmitryrazinkov/hint": "^1.1.3",
"@popperjs/core": "^2.11.2",
"axios": "^0.24.0",
"cypress": "^9.5.2",
"lit": "^2.2.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "~4.3.0",
"vee-validate": "^4.5.7",
"vue": "^3.2.31",
"vue-final-modal": "^3.4.3",
"vue-i18n": "^9.1.9",
"vue-router": "^4.0.12",
"vue-toastification": "^2.0.0-rc.5",
"vuex": "^4.0.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@cypress/vite-dev-server": "^2.2.2",
"@cypress/vue": "^3.1.1",
"@rushstack/eslint-patch": "^1.1.0",
"@types/node": "^16.11.25",
"@vitejs/plugin-vue": "^2.2.2",
"@vitejs/plugin-vue-jsx": "^1.3.7",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^8.2.0",
"miragejs": "^0.1.43",
"prettier": "^2.5.1",
"start-server-and-test": "^1.14.0",
"typescript": "~4.5.5",
"vite": "^2.8.4",
"vue-tsc": "^0.31.4",
"sass": "^1.49.9"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"git add"
]
}
}