-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.7 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.7 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
{
"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.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.29.0",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.29.0",
"@babel/preset-react": "7.28.5",
"@babel/runtime": "7.28.6",
"autoprefixer": "10.4.27",
"@babel/eslint-parser": "7.28.6",
"babel-loader": "10.1.0",
"core-js": "3.48.0",
"css-loader": "7.1.4",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"file-loader": "6.2.0",
"gh-pages": "6.3.0",
"html-webpack-plugin": "5.6.6",
"less": "4.5.1",
"less-loader": "12.3.1",
"node-sass": "9.0.0",
"postcss-loader": "8.2.1",
"rimraf": "6.1.3",
"sass-loader": "16.0.7",
"style-loader": "4.0.0",
"webpack": "5.105.4",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.3"
}
}