-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 955 Bytes
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
{
"name": "rectangle-app",
"version": "1.0.0",
"description": "https://github.com/UIHP-Challenges/UIHP-Challenges-April23",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode=development",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@testing-library/jest-dom": "^6.5.0",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"babel": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}