-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "am-editor",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"plugins/*"
],
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "node ./scripts/build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && lerna publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"author": "[email protected]",
"homepage": "https://github.com/big-camel/am-editor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/big-camel/am-editor.git"
},
"bugs": {
"url": "https://github.com/big-camel/am-editor/issues"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@umijs/test": "^3.0.5",
"antd": "^4.15.5",
"dumi": "^1.1.17",
"father-build": "^1.19.4",
"gh-pages": "^3.0.0",
"lerna": "^3.22.1",
"lint-staged": "^10.0.7",
"prettier": "2.3.1",
"reconnecting-websocket": "^4.4.0",
"rollup-plugin-vue": "^6.0.0",
"yorkie": "^2.0.0"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"markdown-it-container": "^3.0.0"
}
}