-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.68 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.68 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "relient-cli",
"version": "3.2.2",
"author": "Liu Yang <zation1@gmail.com>",
"license": "MIT",
"description": "Relient CLI is a cli wrapper of react-starter-kit. It also provides configuration and API mock tools.",
"keywords": [
"react",
"isomorphic",
"cli"
],
"repository": {
"type": "git",
"url": "git://github.com/zation/relient-cli.git"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"bin": {
"relient": "./src/bin/relient.js"
},
"peerDependencies": {
"core-js": ">=3.3.6"
},
"dependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/plugin-proposal-export-namespace-from": "^7.14.2",
"@babel/plugin-proposal-function-sent": "^7.12.13",
"@babel/plugin-proposal-numeric-separator": "^7.14.2",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.13.13",
"@babel/plugin-transform-react-inline-elements": "^7.12.13",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"app-module-path": "^2.2.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"body-parser": "^1.19.0",
"browser-sync": "^2.26.14",
"chalk": "^4.1.1",
"chokidar": "^3.5.1",
"cors": "^2.8.5",
"css-loader": "^5.2.4",
"cssnano": "^5.0.2",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"glob": "^7.1.7",
"http-proxy-middleware": "^2.0.0",
"less": "^4.1.1",
"less-loader": "^9.0.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"node-sass": "^6.0.0",
"null-loader": "^4.0.1",
"pixrem": "^5.0.0",
"pleeease-filters": "^4.0.0",
"postcss": "^8.2.15",
"postcss-calc": "^8.0.0",
"postcss-color-function": "^4.1.0",
"postcss-custom-media": "^8.0.0",
"postcss-custom-properties": "^11.0.0",
"postcss-custom-selectors": "^6.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-loader": "^5.2.0",
"postcss-media-minmax": "^5.0.0",
"postcss-nested": "^5.0.5",
"postcss-nesting": "^8.0.1",
"postcss-selector-matches": "^4.0.0",
"postcss-selector-not": "^5.0.0",
"react-dev-utils": "^11.0.4",
"react-error-overlay": "^6.0.9",
"regenerator-runtime": "^0.13.7",
"relient": ">=5.1.3",
"require-dir": "^1.2.0",
"rimraf": "^3.0.2",
"sass-loader": "^11.1.1",
"source-map-support": "^0.5.19",
"svg-url-loader": "^7.1.1",
"url-loader": "^4.1.1",
"watch": "^1.0.2",
"webpack": "^5.37.0",
"webpack-assets-manifest": "^5.0.6",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-dev-middleware": "^4.2.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^3.0.0",
"webpack-sources": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"babel-eslint": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8"
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"fix-js": "yarn run lint-js --fix",
"fix": "yarn run fix-js && yarn run fix-css",
"pub": "npm publish --registry=https://registry.npmjs.org/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}