-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.66 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
{
"scripts": {
"build": "npm run lint && npm run type-check && npm run test",
"install-pre-commit-hook": "cp scripts/pre-commit-hook.sh .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit && echo 'Pre-commit hook copied!'",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"type-check": "tsc --strict --noEmit --project ./src",
"test-with-coverage": "jest --coverage ./test",
"test": "jest ./test",
"generate-coverage-badge": "npm run test-with-coverage && make-coverage-badge --report-path ./test/coverage/coverage-summary.json --output-path ./assets/coverage-badge.svg",
"pre-commit": "npm run lint && npm run type-check && npm run generate-coverage-badge"
},
"dependencies": {
"@airtable/blocks": "1.16.0",
"isomorphic-fetch": "^3.0.0",
"react": "^16.9.0",
"react-collapsible": "^2.10.0",
"react-dom": "^16.9.0",
"react-tabs": "4.2.1",
"react-toastify": "^9.1.2",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@airtable/blocks-testing": "^0.0.5",
"@jest/globals": "^29.4.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/react-tabs": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^6.3.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jsdom": "21.1.0",
"make-coverage-badge": "1.2.0",
"msw": "^1.2.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}