-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 4.31 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "lanting",
"version": "0.1.0",
"description": "兰亭文存",
"type": "module",
"scripts": {
"tsnode": "ts-node",
"lint": "umi g tmp && npm run lint:js && npm run lint:prettier",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:prettier": "prettier --check \"src/**/*\" --end-of-line auto",
"prettier": "prettier -c --write \"src/**/*\"",
"start": "umi dev",
"start:dev": "cross-env REACT_APP_ENV=dev MOCK=none umi dev",
"start:no-mock": "cross-env MOCK=none umi dev",
"start:no-ui": "cross-env UMI_UI=none umi dev",
"start:pre": "cross-env REACT_APP_ENV=pre umi dev",
"start:test": "cross-env REACT_APP_ENV=test MOCK=none umi dev",
"archives:sync": "echo TODO",
"archives": "yarn archives:compile && yarn archives:upload-imgs && yarn archives:add && git push",
"archives:compile": "node --experimental-specifier-resolution=node --loader ts-node/esm ./scripts/compile-archives.ts",
"archives:add": "git fetch; git add ./archives; git commit --no-verify -m \"archive: `date \"+%Y-%m-%d-%H:%M:%S\"`\"; git merge origin master; git push",
"archives:upload-imgs": "ossutilmac64 cp -r -u ./archives/imgs oss://lanting-public-20230707-1/archives/imgs",
"archives:migrate-backend2": "node --experimental-specifier-resolution=node --loader ts-node/esm ./scripts/migrate-backend2.ts",
"deploy": "yarn build && yarn deploy:ec2 && yarn deploy:oss",
"build": "UMI_ENV=prod umi build",
"analyze": "cross-env ANALYZE=1 umi build",
"deploy:oss": "for f in ./dist/; do ossutilmac64 cp -r -u $f oss://lanting-public-20230707-1/; done",
"deploy:ec2": "rsync -arvz --progress ./config/lanting-nginx.conf [email protected]:/data/server-apps/lanting; rsync -arvz --progress ./dist/index.html [email protected]:/data/server-apps/lanting/dist"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "npm run lint-staged:js",
"**/*.{js,jsx,tsx,ts}": [
"prettier --write"
]
},
"browserslist": [
"last 2 versions",
"not ie <= 10"
],
"dependencies": {
"@ant-design/icons": "^4.0.0",
"@ant-design/pro-descriptions": "^1.0.16",
"@ant-design/pro-layout": "^6.4.16",
"@ant-design/pro-table": "^2.7.2",
"@types/node": "^20.4.9",
"@umijs/route-utils": "^1.0.32",
"antd": "^4.6.3",
"classnames": "^2.2.6",
"esm": "^3.2.25",
"lodash": "^4.17.11",
"omit.js": "^2.0.2",
"qs": "^6.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-expand-collapse": "^0.2.0",
"react-helmet-async": "^1.0.4",
"react-highlight-words": "^0.16.0",
"react-markdown": "^5.0.3",
"remark-gfm": "^1.0.0",
"tslib": "^2.6.1",
"umi": "^3.2.14",
"umi-request": "^1.0.8",
"use-merge-value": "^1.0.1"
},
"devDependencies": {
"@ant-design/pro-cli": "^1.0.18",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/classnames": "^2.2.7",
"@types/express": "^4.17.0",
"@types/history": "^4.7.2",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.144",
"@types/mysql": "^2.15.17",
"@types/qs": "^6.5.3",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^6.1.0",
"@types/react-highlight-words": "^0.16.1",
"@umijs/fabric": "^2.2.0",
"@umijs/plugin-blocks": "^2.0.5",
"@umijs/preset-ant-design-pro": "^1.2.0",
"@umijs/preset-react": "^1.4.8",
"@umijs/preset-ui": "^2.0.9",
"@umijs/yorkie": "^2.0.3",
"@vercel/kv": "^0.2.2",
"@vercel/node": "^2.15.3",
"carlo": "^0.9.46",
"chalk": "^4.0.0",
"commitlint": "^12.1.4",
"cross-env": "^7.0.0",
"cross-port-killer": "^1.1.1",
"detect-installer": "^1.0.1",
"enzyme": "^3.11.0",
"eslint": "^7.1.0",
"express": "^4.17.1",
"gh-pages": "^3.0.0",
"husky": "^6.0.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^10.0.0",
"mockjs": "^1.0.1-beta3",
"mysql": "^2.18.1",
"prettier": "^2.0.1",
"pro-download": "1.0.1",
"puppeteer-core": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
},
"checkFiles": [
"src/**/*.js*",
"src/**/*.ts*",
"src/**/*.less",
"config/**/*.js*",
"scripts/**/*.js"
]
}