-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "barebones-react",
"scripts": {
"start": "yarn && webpack -d",
"watch": "webpack -d --watch",
"build": "webpack -p"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.21.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"browserslist": "^4.14.0",
"css-loader": "^2.1.0",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.6",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"postcss": "^7.0.32",
"postcss-custom-media": "^7.0.7",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"style-loader": "^0.20.2",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-declaration-use-variable": "^1.7.0",
"stylelint-order": "^2.1.0",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0"
}
}