-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.64 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.64 KB
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
{
"name": "auth-web-form",
"version": "0.3.0",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"check-size": "CHECK_SIZE=true vue-cli-service build",
"lint": "vue-cli-service lint",
"lint:style": "vue-cli-service lint:style",
"test": "vue-cli-service test:unit",
"test:dev": "vue-cli-service test:unit --watchAll",
"coverage": "vue-cli-service test:unit --coverage --coverageReporters=lcov",
"coverage:publish": "npm run coverage && codecov"
},
"dependencies": {
"@sentry/browser": "^4.5.2",
"axios": "^0.18.0",
"centrifuge": "^2.0.0",
"codecov": "^3.1.0",
"lodash-es": "^4.17.11",
"qs": "^6.6.0",
"simple-assert": "^1.0.0",
"vue": "^2.5.17",
"vue-i18n": "^8.0.0",
"vue-the-mask": "^0.11.1",
"vuelidate": "^0.7.4",
"vuex": "^3.0.1"
},
"devDependencies": {
"@ascendancyy/vue-cli-plugin-stylelint": "^1.1.2",
"@kazupon/vue-i18n-loader": "^0.3.0",
"@vue/cli-plugin-babel": "^3.1.1",
"@vue/cli-plugin-eslint": "^3.1.1",
"@vue/cli-plugin-unit-jest": "^3.4.1",
"@vue/cli-service": "^3.1.1",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.28",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0-0",
"node-sass": "^4.9.0",
"pre-commit": "^1.2.2",
"sass-loader": "^7.0.1",
"stylelint-config-standard": "^18.2.0",
"vue-cli-plugin-i18n": "^0.5.1",
"vue-template-compiler": "^2.5.17",
"webpack-bundle-analyzer": "^3.0.3"
},
"pre-commit": [
"lint",
"test"
]
}