-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "bre-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.16.0",
"npm": "10.8.1"
},
"engine-strict": true,
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start -p 8080",
"lint": "next lint",
"lint:pipeline": "next lint --max-warnings=0",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.0.0",
"@gorules/jdm-editor": "https://gitpkg.vercel.app/bcgov/jdm-editor/packages/jdm-editor?master",
"@rjsf/core": "^5.17.1",
"@rjsf/utils": "^5.17.1",
"@rjsf/validator-ajv8": "^5.17.1",
"antd": "^5.15.2",
"axios": "^1.6.8",
"d3": "^7.9.0",
"json5": "^2.2.3",
"next": "14.1.0",
"next-logger": "^5.0.1",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"react": "^18",
"react-dom": "^18",
"reactflow": "^11.11.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.6",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.1",
"eslint-config-next": "14.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}