-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
120 lines (120 loc) · 3.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "metagraph",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "NODE_ENV=development vue-cli-service serve --mode production",
"serve:local": "NODE_ENV=local vue-cli-service serve --mode local",
"build": "NODE_ENV=production vue-cli-service build --mode production",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"test": "vue-cli-service test:unit",
"local:static": "node server/local.server.js"
},
"dependencies": {
"@ant-design/icons-vue": "6.0.1",
"@antv/g6": "4.3.11",
"@antv/x6": "1.28.1",
"@tiptap/core": "2.0.0-beta.159",
"@tiptap/extension-character-count": "2.0.0-beta.24",
"@tiptap/extension-code-block-lowlight": "2.0.0-beta.66",
"@tiptap/extension-document": "2.0.0-beta.13",
"@tiptap/extension-image": "2.0.0-beta.24",
"@tiptap/extension-mention": "2.0.0-beta.90",
"@tiptap/extension-paragraph": "2.0.0-beta.17",
"@tiptap/extension-task-item": "2.0.0-beta.30",
"@tiptap/extension-task-list": "2.0.0-beta.26",
"@tiptap/extension-text": "2.0.0-beta.13",
"@tiptap/starter-kit": "2.0.0-beta.164",
"@tiptap/suggestion": "2.0.0-beta.85",
"@tiptap/vue-3": "2.0.0-beta.85",
"ant-design-vue": "2.2.8",
"axios": "0.21.4",
"core-js": "^3.6.5",
"crypto-js": "^4.1.1",
"dexie": "^3.2.2",
"insert-css": "2.0.0",
"intro.js": "5.0.0",
"lodash": "4.17.21",
"lowlight": "2.5.0",
"metagraph-constant": "0.0.108",
"metagraph-ui": "0.0.2",
"prosemirror-model": "1.15.0",
"prosemirror-state": "1.3.4",
"prosemirror-view": "1.23.3",
"qiniu-js": "3.4.0",
"tiny-warning": "1.0.3",
"tinycolor2": "1.4.2",
"tippy.js": "6.3.2",
"uuid": "^8.3.2",
"vue": "3.2.20",
"vue-cropper": "1.0.2",
"vue-router": "4.0.12",
"vuedraggable": "^4.1.0",
"vuex": "4.0.2",
"vuex-persistedstate": "4.1.0"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.13",
"@types/insert-css": "^2.0.1",
"@types/intro.js": "^3.0.2",
"@types/jest": "^24.0.19",
"@types/lowlight": "0.0.3",
"@types/node": "^17.0.17",
"@types/tinycolor2": "^1.4.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "^4.5.14",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-0",
"babel-plugin-import": "^1.13.3",
"babel-preset-latest": "^6.24.1",
"chalk": "^5.0.0",
"compression-webpack-plugin": "^6.1.1",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^7.0.0",
"express": "^4.17.2",
"sass": "^1.50.0",
"sass-loader": "^8.0.2",
"ts-jest": "^26.4.2",
"typescript": "~4.1.5",
"vue-jest": "^5.0.0-0",
"vue-picture-cropper": "^0.4.0",
"vue-svg-loader": "^0.16.0",
"webpack-bundle-analyzer": "^4.5.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.tsx?$": "ts-jest",
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.vue$": "vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,vue}",
"!**/node_modules/**"
],
"preset": "@vue/cli-plugin-unit-jest/presets/typescript-and-babel"
}
}