-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.33 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
95
96
97
98
99
100
101
102
103
{
"name": "react-webpack-demo",
"version": "1.0.4",
"webpackConfigVersion": "1.0.16",
"private": false,
"description": "",
"main": "index.js",
"isTypeScript": true,
"fullCompanyName": "",
"shortCompanyName": "",
"appCode": "",
"appName": "React Webpack Demo App",
"longAppName": "React Webpack Application",
"keywords": [],
"author": "Mark Jovis",
"license": "GNU",
"repository": {
"type": "git",
"url": "https://github.com/markjovis/react-webpack-template.git"
},
"dependencies": {
"@fvilers/disable-react-devtools": "^1.3.0",
"@types/react": "^18.2.54",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.17",
"node-polyfill-webpack-plugin": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.1.4",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.10.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.0",
"postcss": "^8.4.34",
"postcss-loader": "^7.3.4",
"react-refresh": "^0.14.0",
"sass": "^1.70.0",
"sass-loader": "^13.3.3",
"source-map-loader": "^4.0.2",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.1",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --env env=local ENV=development port=3456 --open",
"start:dev": "webpack-dev-server --env env=dev ENV=production port=3456 --open",
"start:qa": "webpack-dev-server --env env=qa ENV=development port=3456 --open",
"start:stage": "webpack-dev-server --env env=stage ENV=development port=3456 --open",
"start:prod": "webpack-dev-server --env env=prod ENV=production port=3456 --open",
"build:local": "webpack --env env=local ENV=production",
"build:dev": "webpack --env env=dev ENV=production",
"build:qa": "webpack --env env=qa ENV=production",
"build:stage": "webpack --env env=stage ENV=production",
"build:prod": "webpack --env env=prod ENV=production",
"branch": "git push origin dev",
"publish-patch": "npm version patch && npm run branch",
"publish-minor": "npm version minor && npm run branch",
"publish-major": "npm version major && npm run branch"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}