forked from dineug/erd-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.8 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
{
"name": "@vuerd/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint \"**/*.{js,ts,tsx,vue}\" --fix",
"format:prettier": "prettier \"**/*.{cjs,html,js,json,md,ts,tsx}\" --write",
"lint": "eslint \"**/*.{js,ts,tsx}\""
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@mdi/js": "^5.9.55",
"@reactivex/ix-ts": "^4.5.1",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-typescript": "^8.2.5",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-google-analytics": "^6.2.9",
"@storybook/addon-links": "^6.3.7",
"@storybook/addons": "^6.3.7",
"@storybook/storybook-deployer": "^2.8.10",
"@storybook/theming": "^6.3.7",
"@storybook/web-components": "^6.3.7",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/ramda": "^0.27.44",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-jest": "^27.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-inline-dotenv": "^1.6.0",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-transform-remove-console": "^6.9.4",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-vue": "^7.18.0",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"lodash": "^4.17.21",
"prettier": "^2.3.2",
"ramda": "^0.27.1",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-visualizer": "^5.5.2",
"rollup": "^2.56.3",
"rxjs": "^7.3.0",
"stats.js": "^0.17.0",
"tslib": "^2.3.1",
"typedoc": "^0.21.9",
"typescript-styled-plugin": "^0.18.1",
"typescript": "4.3.5",
"uuid": "^8.3.2",
"vite": "^2.5.3",
"vue-eslint-parser": "^7.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,tsx,vue}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}