-
Notifications
You must be signed in to change notification settings - Fork 272
/
package.json
67 lines (67 loc) · 1.77 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
{
"name": "mobile-web-best-practice",
"version": "1.2.9",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build && rm -rf dist/js/*.js.map",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@sentry/browser": "^5.6.3",
"@sentry/integrations": "^5.6.1",
"async-validator": "^3.0.4",
"axios": "^0.21.2",
"compare-versions": "^3.6.0",
"core-js": "^2.6.5",
"dsbridge": "^3.1.4",
"hammerjs": "^2.0.8",
"idb": "^7.1.1",
"lodash": "^4.17.15",
"mem": "^5.1.1",
"mockjs": "^1.0.1-beta3",
"moment": "^2.29.4",
"vant": "^2.1.2",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.1.2",
"vuedraggable": "^2.23.2"
},
"devDependencies": {
"@sentry/webpack-plugin": "^1.8.0",
"@types/chai": "^4.1.0",
"@types/hammerjs": "^2.0.36",
"@types/lodash": "^4.14.137",
"@types/mockjs": "^1.0.2",
"@vue/cli-plugin-babel": "^3.10.0",
"@vue/cli-plugin-typescript": "^3.10.0",
"@vue/cli-service": "^3.10.0",
"@vue/test-utils": "1.0.0-beta.29",
"axios-mock-adapter": "^1.17.0",
"babel-plugin-import": "^1.12.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-try-catch-error-report": "^0.1.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^13.0.3",
"lodash-webpack-plugin": "^0.11.5",
"offline-package-webpack-plugin": "^0.1.9",
"postcss-px-to-viewport": "^1.1.1",
"typescript": "^4.8.4",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}