-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "chrome-recorder",
"description": "",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config _webpack/webpack.prod.js",
"start": "cross-env NODE_ENV=development webpack serve --config _webpack/webpack.dev.js"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.1",
"eslint": "^9.2.0",
"eslint-plugin-react": "^7.34.1",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"react-refresh": "^0.14.2",
"sass": "^1.77.1",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"browserslist": [
">0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not IE 9-11"
]
}