-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 KB
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
{
"name": "qa-octuple",
"version": "1.0.0",
"private": false,
"author": "Dylan Kilgore <dkilgore@eightfold.ai>",
"repository": {
"type": "git",
"url": "git+https://github.com/EightfoldAI/qa-octuple.git"
},
"bugs": {
"url": "https://github.com/EightfoldAI/qa-octuple/issues"
},
"engines": {
"node": ">=20.11.1"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint": "tsc --noEmit && eslint src --ignore-pattern 'src/public' --max-warnings 0",
"lint:fix": "tsc --noEmit && eslint src --ignore-pattern 'src/public' --fix"
},
"dependencies": {
"@eightfold.ai/octuple": "2.51.1",
"@react-spring/web": "9.6.1",
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.6.8",
"dayjs": "1.11.3",
"mongodb": "^6.4.0",
"next": "14.1.0",
"pdfjs": "^2.5.0",
"pdfjs-dist": "^3.7.107",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-flip-toolkit": "7.0.13",
"react-redux": "^9.0.4",
"react-use-measure": "2.1.1"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.11.25",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "^9.0.11",
"postcss": "^8.4.31",
"postcss-import": "^16.0.1",
"prettier": "2.5.1",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.0.2"
}
}