forked from CMSgov/saf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.2 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
91
92
93
94
95
{
"name": "cms-saf",
"version": "1.0.0",
"private": true,
"babel": {
"presets": [
[
"@babel/preset-env"
],
[
"@vue/app",
{
"useBuiltIns": "entry"
}
]
],
"plugins": [
"@babel/plugin-proposal-nullish-coalescing-operator"
]
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"release-it": "npm version patch && git push --follow-tags",
"cy:run": "cypress run"
},
"files": [
"dist"
],
"dependencies": {
"@mdi/font": "^5.0.45",
"@types/prismjs": "^1.16.6",
"axios": "^0.21.3",
"babel-plugin-prismjs": "^2.0.1",
"babel-polyfill": "^6.26.0",
"core-js": "^2.6.11",
"css-vars-ponyfill": "^2.3.2",
"intersection-observer": "^0.10.0",
"material-design-icons": "^3.0.1",
"prismjs": "^1.25.0",
"register-service-worker": "^1.7.1",
"vue": "^2.6.12",
"vue-cheetah-grid": "^0.22.3",
"vue-json-viewer": "^2.2.20",
"vue-prism-component": "^1.2.0",
"vue-router": "^3.1.6",
"vuetify": "^2.2.21",
"vuex": "^3.1.3",
"websocket-extensions": "^0.1.4",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/preset-env": "^7.10.2",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-plugin-pwa": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"babel-eslint": "^10.1.0",
"cypress": "^7.6.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"material-design-icons-iconfont": "^5.0.1",
"sass": "^1.26.3",
"sass-loader": "^7.1.0",
"vue-cli-plugin-vuetify": "^0.6.3",
"vue-template-compiler": "^2.6.12",
"vuetify-loader": "^1.4.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}