-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.23 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "relient-admin",
"version": "5.1.2",
"author": "Liu Yang <zation1@gmail.com>",
"license": "MIT",
"keywords": [
"react",
"redux",
"i18n"
],
"engines": {
"node": ">=14.0",
"npm": ">=6.0"
},
"repository": {
"type": "git",
"url": "git://github.com/zation/relient-admin.git"
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"@tinymce/tinymce-react": "^4.3.0",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.191",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"antd": "^5.6.3",
"bignumber.js": "^9.1.1",
"dayjs": "^1.11.8",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"tinymce": "^6.5.1"
},
"peerDependencies": {
"@reduxjs/toolkit": "^1.8.5"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@reduxjs/toolkit": "^1.9.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-plugin-import": "^1.13.6",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "13.2.2",
"pinst": "^3.0.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"scripts": {
"lint": "eslint --ignore-path .eslintignore . && tsc --noEmit",
"fix": "npm run lint --fix",
"build": "rm -rf ./dist && mkdir ./dist && lessc src/styles.less dist/styles.css && cp ./package.json ./README.md ./dist/ && tsc && babel --config-file ./.babelrc.js ./dist --out-dir ./dist",
"pub": "npm run lint && npm run build && npm publish ./dist --registry=https://registry.npmjs.org/",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
}
}