-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 943 Bytes
/
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
{
"name": "test-react-experimental",
"version": "1.0.0",
"main": "index.js",
"private": true,
"repository": "[email protected]:manakuro/test-react-experimental.git",
"author": "manato kuroda <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest"
},
"dependencies": {
"jotai": "^1.9.2",
"rxjs": "^7.5.7",
"react": "18.3.0-next-e1dd0a2f5-20221115",
"react-dom": "18.3.0-next-e1dd0a2f5-20221115"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"@swc/core": "^1.3.14",
"@swc/jest": "^0.2.23",
"@testing-library/react": "^13.4.0"
},
"jest": {
"rootDir": ".",
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(t|j)sx?$": ["@swc/jest"]
},
"globals": {
"__DEV__": true
},
"modulePathIgnorePatterns": [
"dist"
],
"testRegex": "test.(js|ts|tsx|jsx)$"
}
}