-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "ai-evaluator-extension",
"license": "AGPL-3.0-only",
"private": true,
"scripts": {
"postinstall": "shx cp -n lib/env.template.ts lib/env.ts",
"start": "npm run start:applications",
"start:applications": "block run --remote applications",
"type-check": "tsc --noEmit --esModuleInterop --jsx react frontend/**.tsx lib/**.ts",
"test": "jest --passWithNoTests",
"lint": "eslint --ext .js,.jsx,.ts,.tsx frontend lib",
"deploy": "node deploy.js"
},
"dependencies": {
"@airtable/blocks": "^1.18.0",
"@headlessui/react": "^1.7.7",
"p-limit": "^5.0.0",
"p-retry": "^6.2.0",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@airtable/blocks-cli": "^2.0.4",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"shx": "^0.3.4",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"jest": {
"preset": "ts-jest"
}
}