-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
51
52
53
54
55
56
57
58
{
"name": "beginners",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "BABEL_ENV=development next dev",
"build": "BABEL_ENV=production next build",
"start": "next start",
"lint": "next lint",
"test": "BABEL_ENV=test jest"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "22.10.1",
"@types/react": "19.0.1",
"babel-jest": "^29.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"msw": "^2.6.8",
"next": "^15.1.0",
"next-router-mock": "^0.9.13",
"node-fetch": "^3.3.2",
"postcss": "^8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.1",
"typescript": "5.7.2",
"util": "^0.12.5"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": ["babel-jest", { "configFile": "./babel.config.js" }],
"^.+\\.(png|jpg|jpeg|gif|bmp|svg)$": "jest-transform-stub"
},
"transformIgnorePatterns": [
"/node_modules/(?!node-fetch)/"
]
},
"dependencies": {
"broadcast-channel": "^7.0.0"
}
}