-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 2.56 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
81
82
83
84
85
86
87
88
89
90
{
"name": "ara",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "node swenvGenerator.js && vue-cli-service build",
"swenv": "node swenvGenerator.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"lint-staged": "lint-staged",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6006"
},
"dependencies": {
"@splidejs/vue-splide": "^0.3.5",
"axios": "^0.25.0",
"bulma": "^0.7.1",
"core-js": "^3.21.0",
"date-fns": "^2.28.0",
"firebase": "^9.12.1",
"lodash": "^4.17.21",
"register-service-worker": "^1.7.2",
"tiptap": "^1.32.2",
"tiptap-extensions": "^1.35.2",
"vue": "^2.6.14",
"vue-i18n": "^8.27.0",
"vue-meta": "^2.4.0",
"vue-progressbar": "^0.7.5",
"vue-router": "^3.5.3",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@intlify/vue-i18n-loader": "^1.0.0",
"@storybook/addon-actions": "^5.1.11",
"@storybook/addon-links": "^5.1.11",
"@storybook/addons": "^5.1.11",
"@storybook/vue": "^5.1.11",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-pwa": "~4.5.15",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.0.1",
"babel-loader": "^8.2.3",
"babel-preset-vue": "^2.0.2",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"json-loader": "^0.5.7",
"lint-staged": "^14.0.1",
"node-sass": "^6.0.1",
"sass-loader": "^10.2.1",
"typescript": "~4.1.5",
"vue-cli-plugin-i18n": "~2.3.1",
"vue-template-compiler": "^2.6.14",
"yaml-loader": "^0.6.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
}