This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.22 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
{
"name": "euromat",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "npm run svg && npm run data && vue-cli-service serve",
"build": "npm run svg && npm run admin && npm run data && vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"admin": "node bin/admin-yml",
"data": "node bin/xlsx-data",
"svg": "vsvg -s ./src/assets/svg -t ./src/assets/icons"
},
"dependencies": {
"@vue/composition-api": "^1.0.0-rc.14",
"core-js": "^3.6.5",
"register-service-worker": "^1.7.2",
"vue": "^2.6.14",
"vue-analytics": "^5.22.1",
"vue-feather-icons": "^5.1.0",
"vue-i18n": "^8.24.5",
"vue-markdown": "^2.2.4",
"vue-router": "^3.5.2",
"vue-svgicon": "^3.2.9"
},
"devDependencies": {
"@sentry/browser": "^6.8.0",
"@sentry/integrations": "^6.8.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-pwa": "^4.5.13",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.1.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^7.0.0",
"js-yaml": "^4.1.0",
"lint-staged": "^11.0.0",
"normalize.css": "^8.0.1",
"ora": "^5.4.1",
"postcss-calc": "^7.0.3",
"postcss-color-mod-function": "^3.0.3",
"postcss-custom-properties": "^9.1.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^6.0.1",
"postcss-url": "^8.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-webpack-plugin": "^2.2.2",
"vue-template-compiler": "^2.6.14",
"xlsx": "^0.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
],
"*": [
"npm run admin",
"git add"
]
}
}