forked from IBM/InspectorRAGet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "InspectorRAGet",
"version": "1.0.2",
"private": true,
"description": "An Introspection Platform for RAG Evaluation",
"author": "kpfadnis@us.ibm.com",
"license": "ISC",
"scripts": {
"postinstall": "husky install",
"dev": "next dev",
"build": "next build && node ./scripts/license",
"start": "next start",
"lint": "next lint && stylelint \"**/*.{css,scss}\"",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "yarn build"
}
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.2",
"@types/node": "18.16.3",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"prepend-file": "^2.0.1",
"prettier": "^3.0.3",
"sass": "^1.54.3",
"typescript": "^5.0.4",
"stylelint": "16.2.1",
"stylelint-config-standard-scss": "13.0.0"
},
"dependencies": {
"@carbon/colors": "^11.4.0",
"@carbon/themes": "^11.8.0",
"@carbon/icons-react": "^11.34.1",
"@carbon/pictograms-react": "^11.49.0",
"@carbon/charts": "^1.7.4",
"@carbon/charts-react": "^1.7.4",
"@carbon/react": "^1.17.0",
"d3": "^7.8.4",
"date-fns": "^2.30.0",
"dompurify": "3.1.7",
"html-react-parser": "^5.1.1",
"lodash": "^4.17.4",
"next": "^14.1.1",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.1.0",
"react-markdown": "^8.0.7",
"rehype-raw": "^7.0.0",
"remark-gfm": "^3.0.1",
"statistics.js": "^1.0.0",
"uuid": "^9.0.1"
}
}