-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.46 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
{
"name": "react-kickstarter",
"version": "1.0.2",
"main": "src/index.js",
"description": "Create isomorphic/universal React apps extremely simple with no configuration (until you need it)",
"author": "Markus Wetzel <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"isomorphic",
"universal",
"webpack",
"hot reloading",
"react refresh",
"starter",
"babel",
"eslint",
"prettier"
],
"repository": "https://github.com/ProAI/react-kickstarter.git",
"bugs": {
"url": "https://github.com/ProAI/react-kickstarter/issues"
},
"bin": {
"eslint": "./src/scripts/eslint.js"
},
"scripts": {
"lint": "./node_modules/.bin/eslint src"
},
"files": [
"src",
"babel.js",
"babel-expo.js",
"eslint.js",
"prettier.js"
],
"dependencies": {
"@babel/core": "7.24.4",
"@babel/preset-env": "7.24.4",
"@babel/preset-flow": "7.24.1",
"@babel/preset-react": "7.24.1",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
"babel-eslint": "10.1.0",
"babel-loader": "9.1.3",
"babel-plugin-intlized-components": "0.2.4",
"babel-plugin-module-resolver": "5.0.2",
"browserslist": "4.23.0",
"clean-webpack-plugin": "4.0.0",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cross-spawn": "7.0.3",
"css-loader": "7.1.1",
"deepmerge": "4.3.1",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-plugin-flowtype": "6.0.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.25.2",
"eslint-plugin-react-hooks": "4.2.0",
"express": "4.19.2",
"find-cache-dir": "3.3.2",
"http-proxy": "1.18.1",
"module-alias": "2.2.3",
"node-polyfill-webpack-plugin": "3.0.0",
"pkg-dir": "5.0.0",
"process": "0.11.10",
"react-app-polyfill": "3.0.0",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.10",
"webpack": "^5.64.4",
"webpack-dev-middleware": "6.1.2",
"webpack-hot-middleware": "2.26.1",
"webpack-manifest-plugin": "5.0.0",
"which": "4.0.0"
},
"devDependencies": {
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-refresh": "0.14.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"react-refresh": ">=0.11.0"
},
"engines": {
"node": ">= 10.13.0",
"npm": ">= 5"
}
}