-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.09 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
{
"name": "oumi",
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"private": true,
"description": "oumi 前端工具包",
"main": "index.js",
"scripts": {
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ",
"lint:js": "eslint --fix packages/**/*.js packages/**/bin/*",
"lint:prettier": "prettier --check \"packages/**/*\" --end-of-line auto",
"prettier": "prettier --write \"packages/**/*\"",
"serve": "cd packages/oumi-cli-ui && npm run serve",
"dev": "cd packages/oumi-ui-frontend && npm run dev",
"build": "lerna run build",
"publish": "lerna publish --no-private",
"v:patch": "lerna version patch --no-private",
"v:major": "lerna version major --no-private",
"v:minor": "lerna version minor --no-private",
"v": "node scripts/updateVersion.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dasheng91/oumi"
},
"keywords": [
"swagger",
"cli",
"oumi"
],
"author": "dasheng",
"license": "MIT",
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "npm run lint-staged:js",
"**/*.{js,jsx,tsx,ts}": [
"prettier --write"
]
},
"devDependencies": {
"@types/koa-static": "^4.0.2",
"@types/node": "^15.3.0",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^34.0.1",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"zx": "4.1.0",
"yorkie": "^2.0.0"
},
"engines": {
"node": ">=10.0.0"
}
}