-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "simple_react_start_kit_2017",
"description": "react webpack2 react-router example",
"version": "2.0.0",
"main": "src/index.js",
"scripts": {
"clean": "rimraf dist/*",
"start": "webpack serve --mode development --hot --config webpack.config.js",
"dist": "npm run clean && webpack --mode production --config webpack.config.js",
"deploy": "npm run dist && gh-pages -d dist",
"build:docker": "npm run dist && docker build -t reactdocker .",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"private": true,
"dependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@babel/core": "7.26.8",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/plugin-transform-runtime": "7.26.8",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.26.8",
"@babel/preset-react": "7.26.3",
"@babel/runtime": "7.26.7",
"autoprefixer": "10.4.20",
"@babel/eslint-parser": "7.26.8",
"babel-loader": "9.2.1",
"core-js": "3.40.0",
"css-loader": "7.1.2",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"file-loader": "6.2.0",
"gh-pages": "6.3.0",
"html-webpack-plugin": "5.6.3",
"less": "4.2.2",
"less-loader": "12.2.0",
"node-sass": "9.0.0",
"postcss-loader": "8.1.1",
"rimraf": "6.0.1",
"sass-loader": "16.0.4",
"style-loader": "4.0.0",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0"
}
}