forked from aiverify-foundation/aiverify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ai-verify-portal",
"version": "1.0.0-alpha",
"private": true,
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/imda_dsl/t2po/ai-verify/ai-verify-portal/ai-verify-shared-library.git",
"directory": "packages/lib"
},
"publishConfig": {
"directory": "dist"
},
"scripts": {
"clean": "rm -rf .next",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint-html-report": "next lint -f html -o eslint-report.html",
"lint-json-report": "next lint -f json -o eslint-report.json",
"lint": "next lint",
"format-check": "prettier --check .",
"format-fix": "prettier --write .",
"test": "jest --silent --verbose",
"test-withlogs": "jest --verbose",
"test-nocov": "jest --silent --verbose --coverage=false --watch",
"test-cov": "jest --coverage",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest",
"coverage": "npx jest --silent",
"dep-check": "npm audit --json | npx npm-audit-markdown --output npm-audit-report.md & npx markdown-to-html-cli --source npm-audit-report.md --output npm-audit-report.html"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "5.10.16",
"@mui/material": "5.10.17",
"@mui/x-data-grid": "^5.17.24",
"@next/font": "13.1.6",
"@rjsf/core": "^5.0.0-beta.14",
"@rjsf/mui": "^5.0.0-beta.14",
"@rjsf/utils": "^5.0.0-beta.14",
"@rjsf/validator-ajv8": "^5.0.0-beta.14",
"adm-zip": "^0.5.10",
"axios": "^1.6.7",
"clsx": "^1.2.1",
"esbuild": "^0.14.54",
"formidable": "^2.1.1",
"formik": "^2.4.2",
"fuse.js": "^6.6.2",
"graphql-ws": "^5.11.2",
"immer": "^9.0.19",
"jest-html-reporter": "^3.10.0",
"jest-json-reporter": "^1.2.2",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"mdx-bundler": "^9.0.1",
"moment": "^2.29.4",
"next": "13.5.6",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-color": "2.17.3",
"react-dom": "^18.2.0",
"react-drag-drop-files": "^2.3.8",
"react-draggable": "^4.4.5",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^4.0.3",
"react-grid-layout": "^1.3.4",
"react-pdf": "^6.2.1",
"react-select": "^5.7.3",
"redis": "^4.5.0",
"remark-gfm": "^3.0.1",
"remark-mdx-images": "^2.0.0",
"swr": "^2.0.0",
"uuid": "^9.0.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/adm-zip": "^0.5.0",
"@types/formidable": "^2.0.5",
"@types/lodash": "^4.14.187",
"@types/node": "^18.13.0",
"@types/react": "latest",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-color": "^3.0.6",
"@types/react-grid-layout": "^1.3.2",
"@types/react-pdf": "^6.2.0",
"@types/semver": "^7.3.13",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"axios-mock-adapter": "^1.21.4",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"next-router-mock": "^0.9.3",
"prettier": "^2.8.8",
"typescript": "latest"
},
"proxy": "http://localhost:4000"
}