-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
102 lines (102 loc) · 2.51 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
96
97
98
99
100
101
102
{
"name": "plantuml-editor",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"build:production": "gulp build",
"flow": "flow",
"flow-typed": "flow-typed install"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^0.27.2",
"bootstrap": "^3.4.1",
"clipboard": "^2.0.11",
"core-js": "^3.22.4",
"dexie": "^2.0.4",
"dompurify": "^2.3.6",
"font-awesome": "^4.7.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"marked": "^4.0.15",
"plantuml-encoder": "^1.4.0",
"print-js": "^1.6.0",
"vee-validate": "^2.2.15",
"vue": "^2.6.14",
"vue-codemirror": "^4.0.6",
"vue-lazyload": "^1.3.3",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/preset-flow": "^7.16.7",
"@vue/cli-plugin-babel": "^4.5.17",
"@vue/cli-plugin-e2e-cypress": "^4.5.17",
"@vue/cli-plugin-eslint": "^4.5.17",
"@vue/cli-plugin-unit-jest": "^4.5.17",
"@vue/cli-service": "^4.5.17",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"eslint": "^7.32.0",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-flowtype-errors": "^4.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "7.14.0",
"flow-bin": "0.154.0",
"flow-typed": "^3.7.0",
"gulp": "^4.0.2",
"prettier": "^2.6.2",
"sass": "^1.51.0",
"sass-loader": "10.2.0",
"vue-template-compiler": "^2.6.14"
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 180
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
]
},
"eslintIgnore": [
"tests/*",
"gulpfile.js",
"vue.config.js"
]
}