-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
48 lines (48 loc) · 1.18 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
{
"private": true,
"scripts": {
"test": "jest",
"start": "webpack-dev-server --hot --progress"
},
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.7",
"@babel/helpers": "^7.22.6",
"@babel/plugin-transform-runtime": "^7.22.7",
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@types/jest": "^29.5.2",
"babel-jest": "^29.6.0",
"babel-loader": "^9.1.2",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.6.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^2.7.6",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"jest": {
"testRegex": "\\.(test|spec)\\.(j|t)sx?$",
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"^.+.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
}
}