-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.04 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
{
"name": "web-app-without-cucumber",
"description": "Web App Without Cucumber",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --open",
"icons:update": "node utils/icon-list-generator/script.js",
"build": "npx --max_old_space_size=4096 vue-cli-service build && npm run icons:update",
"test": "vue-cli-service test",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint --cache \"src/**/*.{js,ts,vue}\"",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:stylelint -- --fix",
"lint:stylelint": "stylelint --cache \"src/**/*.{vue,scss}\" && exit 0",
"prepush": "cross-env NODE_ENV=production npm run lint"
},
"dependencies": {
"@microparts/configuration-js": "^1.0.6",
"@sentry/browser": "^4.6.6",
"@sentry/integrations": "^5.13.0",
"@spacetabs/eslint-config-spacetab-io": "^0.0.7",
"@spacetabs/stylelint-config-spacetab-io": "^0.0.1",
"@spacetabs/svg-sprite-loader": "github:spacetabs/svg-sprite-loader#master",
"@spacetabs/vue-components": "^0.2.14",
"@types/js-cookie": "^2.2.4",
"axios": "^0.19.0",
"css-loader": "^3.4.0",
"js-cookie": "^2.2.1",
"json-templater": "^1.2.0",
"reset-css": "^5.0.1",
"tsyringe": "^4.0.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "~2.6.10",
"vue-class-component": "^7.1.0",
"vue-fragment": "^1.5.1",
"vue-i18n": "^8.3.2",
"vue-markdown": "^2.2.4",
"vue-meta": "^2.3.2",
"vue-property-decorator": "^8.2.1",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-cache": "^3.0.0",
"vuex-class": "^0.3.1",
"vuex-persistedstate": "^2.5.4",
"vuex-router-sync": "^5.0.0",
"vuex-shared-mutations": "0.0.4",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/node": "^10.12.12",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"@vue/cli-plugin-babel": "^3.10.0",
"@vue/cli-plugin-eslint": "^3.10.0",
"@vue/cli-plugin-typescript": "^3.10.0",
"@vue/cli-service": "^3.10.0",
"@vue/eslint-config-typescript": "^4.0.0",
"autoprefixer": "^9.4.7",
"axios-mock-adapter": "^1.16.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-simple-import-sort": "^4.0.0",
"eslint-plugin-vue": "^6.0.0",
"html-loader": "^0.5.5",
"lint-staged": "^9.2.1",
"node-sass": "^4.12.0",
"npx": "^10.2.0",
"raw-loader": "^4.0.0",
"sass-loader": "^7.2.0",
"stylelint": "^10.1.0",
"stylelint-config-recess-order": "^2.0.3",
"stylelint-config-standard": "^18.3.0",
"stylelint-declaration-use-variable": "^1.7.0",
"stylelint-scss": "^3.9.3",
"typescript": "^3.7.3",
"vue-eslint-parser": "^7.0.0",
"vue-template-compiler": "~2.6.10"
},
"peerDependencies": {
"vue": "~2.6.10"
}
}