-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.55 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
57
58
59
60
61
62
63
{
"name": "template-rtw",
"version": "1.1.0",
"description": "Template for React 19, Typescript 5 with Webpack 5",
"main": "index.js",
"scripts": {
"ci": "yarn install --frozen-lockfile",
"start": "webpack serve --config webpack.dev.js --open",
"build": "webpack --config webpack.prod.js",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"react",
"webpack",
"typescript",
"template"
],
"author": {
"name": "Hidayt Rahman",
"url": "https://hidaytrahman.github.io/"
},
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^6.4.7",
"axios": "^1.8.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.3.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"html-webpack-plugin": "^5.6.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.8.6",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"engines": {
"node": "22"
},
"msw": {
"workerDirectory": [
"public"
]
}
}