-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.09 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.09 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
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
{
"name": "relient-admin-template",
"version": "0.0.1",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@tinymce/tinymce-react": "^3.13.0",
"antd": "^4.21.3",
"bignumber.js": "^9.0.1",
"body-parser": "^1.19.0",
"classnames": "^2.3.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"core-js": "^3.21.0",
"date-fns": "^2.28.0",
"echarts": "^5.3.0",
"express": "^4.17.1",
"history": "^5.2.0",
"isomorphic-fetch": "^3.0.0",
"isomorphic-style-loader": "^5.3.2",
"js-cookie": "^3.0.1",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"morgan": "^1.9.1",
"prop-types": "^15.8.1",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.8",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"relient": "5.2.0",
"relient-admin": "4.8.2",
"tinymce": "^5.8.0",
"universal-router": "^9.0.1"
},
"resolutions": {
"**/@ant-design/icons": "^4.7.0",
"**/antd": "^4.21.3",
"**/react": "^17.0.2",
"**/react-dom": "^17.0.2",
"**/relient": "5.2.0",
"**/react-redux": "^7.2.8"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"babel-plugin-import": "^1.13.3",
"babel-plugin-lodash": "^3.3.4",
"enzyme": "^3.3.0",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-css-modules": "^2.7.5",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"faker": "^5.5.3",
"husky": "^7.0.2",
"lint-staged": "^12.3.3",
"pinst": "^2.1.6",
"react-deep-force-update": "^2.1.1",
"react-test-renderer": "^17.0.1",
"relient-cli": "3.2.3",
"serve": "^13.0.2",
"stylelint": "^14.4.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix",
"*.{css,less,styl,scss,sass,sss}": "stylelint --fix"
},
"scripts": {
"lint-js": "eslint --ignore-pattern \"!**/.*\" .",
"lint-css": "stylelint \"src/**/*.{css,less,styl,scss,sass,sss}\"",
"lint": "yarn run lint-js && yarn run lint-css",
"fix-js": "yarn run lint-js --fix",
"fix-css": "yarn run lint-css --fix",
"fix": "yarn run fix-js && yarn run fix-css",
"check": "flow check",
"test": "yarn run lint",
"test-watch": "yarn run test --watch --notify",
"test-cover": "yarn run test --coverage",
"coverage": "yarn run test-cover && opn coverage/lcov-report/index.html",
"clean": "relient clean",
"copy": "relient copy",
"bundle": "relient bundle",
"build": "relient build",
"build-stats": "relient build --analyse",
"build-static": "relient build --static",
"serve": "serve ./build/public",
"start": "relient start",
"mocker": "relient mocker",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
}
}