-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "next-test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test-clear": "yarn jest --clearCache",
"lint": "next lint"
},
"dependencies": {
"next": "latest",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@jest/globals": "^29.7.0",
"@testing-library/dom": "latest",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@types/jest": "^29.5.5",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/testing-library__jest-dom": "^6.0.0",
"babel-jest": "^29.7.0",
"eslint": "latest",
"eslint-config-next": "latest",
"jest": "latest",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "latest",
"typescript": "latest"
}
}