-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·90 lines (90 loc) · 2.6 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
{
"private": true,
"name": "@infra/rapper",
"version": "2.1.14",
"workspaces": [
"packages/*"
],
"description": "rapper, use http api as a function",
"scripts": {
"dev": "dumi dev",
"docs:build": "dumi build",
"deploy:gh-page": "yarn docs:build && gh-pages -d docs-dist",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"build": "lerna run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "jest",
"dev:rapper": "yarn workspace @infra/rapper run test",
"npm:bump_version": "lerna version --yes --no-push",
"publish:beta": "yarn build && yarn npm:bump_version prerelease --preid beta && yarn release --dist-tag=beta",
"publish:test": "yarn build && yarn npm:bump_version prerelease --preid test && yarn release --dist-tag=test",
"publish:prod": "yarn build && yarn npm:bump_version patch && yarn release",
"release": "lerna publish --yes from-package"
},
"repository": {
"type": "git",
"url": "https://github.com/infra-fe/rapper3.git"
},
"keywords": [
"api",
"rap",
"rapper",
"typescript",
"redux"
],
"author": "[email protected]",
"license": "ISC",
"files": [
"dist",
"runtime",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"antd": "^4.22.8",
"json5": "^2.1.0",
"lodash": "^4.17.15",
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@swc/core": "^1.3.9",
"@type-challenges/utils": "^0.1.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.144",
"@types/node": "^14.0.1",
"@types/react": "^18.0.16",
"@types/react-dom": "^18.0.6",
"@types/semver": "^6.2.0",
"@types/update-notifier": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"conventional-changelog": "^3.1.25",
"cross-env": "^7.0.3",
"dumi": "^1.1.45",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react-hooks": "^4.3.0",
"express": "^4.18.1",
"father": "^4.1.0",
"father-build": "^1.22.3",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.2.2",
"jest-preset-typescript": "^1.2.0",
"lerna": "^5.1.8",
"lerna-changelog": "^2.2.0",
"react-hot-loader": "^4.13.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"resolutions": {
"@types/react": "^18.0.16",
"@types/react-dom": "^18.0.6"
}
}