-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
{
"private": true,
"name": "FE-note",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"add": "lerna add",
"start": "dumi dev",
"build": "dumi build",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"now-build": "cross-env PUBLISH_APP_ENV=vercel npm run docs:build",
"github-build":"cross-env PUBLISH_APP_ENV=github npm run docs:build",
"deploy": "npm run github-build && npm run docs:deploy",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"lint": "eslint src/ --ext .ts,.tsx,.jsx,.js,.md",
"test": "father test",
"coverage": "father test --coverage"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "pretty-quick --staged"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@umijs/fabric": "^2.5.13",
"@umijs/test": "^3.4.23",
"dumi": "^2.1.14",
"eslint": "^7.27.0",
"father": "^2.30.6",
"father-build": "^1.19.6",
"gh-pages": "^3.2.0",
"jest": "^27.0.3",
"lerna": "^4.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.2",
"yorkie": "^2.0.0"
},
"dependencies": {
"classnames": "^2.3.1",
"cross-env": "^7.0.3"
}
}