forked from asyncapi/modelina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 974 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
{
"name": "integrate-with-next",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "cd ../.. && npm i && npm run build:prod",
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@next/font": "13.1.5",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"next": "14.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.4",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^29.4.0",
"@types/testing-library__jest-dom": "5.14.5",
"babel-jest": "^29.4.2",
"jest": "^28.1.0",
"jest-environment-jsdom": "28.1.0"
}
}