-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.26 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
{
"name": "memod-composer",
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"test": "vitest",
"test:unit": "vitest",
"test:component": "cypress open-ct",
"test:e2e": "cypress open",
"coverage": "vitest --coverage",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"precommit": "npm run lint",
"prepush": "npm run test"
},
"files": [
"dist/",
"src/"
],
"main": "./dist/memod-composer.umd.js",
"module": "./dist/memod-composer.es.js",
"exports": {
".": {
"import": "./dist/memod-composer.es.js",
"require": "./dist/memod-composer.umd.js"
}
},
"dependencies": {
"docs-soap": "^1.2.1",
"mitt": "^3.0.0",
"quill": "^2.0.0-dev.4",
"quill-autoformat": "^0.1.2",
"quill-mention": "^3.1.0",
"sortablejs": "^1.15.0",
"uuid": "^8.3.2",
"vuedraggable": "^2.24.3"
},
"peerDependencies": {
"unplugin-vue2-script-setup": "^0.9.3",
"@vue/composition-api": "^1.4.6",
"@vue/runtime-dom": "^3.2.31"
},
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@cypress/vite-dev-server": "^2.2.3",
"@cypress/vue": "^3.1.2",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/user-event": "^14.2.0",
"@testing-library/vue": "^5.8.3",
"@vitejs/plugin-legacy": "^1.7.1",
"@vue/composition-api": "^1.4.6",
"@vue/runtime-dom": "^3.2.31",
"@vue/test-utils": "^1.3.0",
"autoprefixer": "^10.4.7",
"c8": "^7.11.3",
"cypress": "^9.7.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.1.0",
"jsdom": "^19.0.0",
"node-fetch": "^3.2.5",
"postcss": "^8.4.14",
"postcss-nested": "^5.0.6",
"prettier": "2.6.2",
"prettier-config-standard": "^5.0.0",
"sass": "^1.52.1",
"tailwindcss": "^3.0.24",
"unplugin-vue2-script-setup": "^0.9.3",
"vite": "^2.8.4",
"vite-plugin-eslint": "^1.6.1",
"vite-plugin-vue2": "^1.9.3",
"vitest": "^0.13.1",
"vue": "^2.6.14",
"vue-template-babel-compiler": "^1.2.0",
"vue-template-compiler": "^2.6.14"
}
}