-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"name": "airtable-block-summary-table",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "block run",
"format": "prettier --write frontend",
"lint": "eslint --ext .js,.jsx,.ts,.tsx frontend",
"prepare": "husky install",
"release": "block release",
"test": "vitest --watch"
},
"lint-staged": {
"*.{css,scss,md,mdx,json,yml,yaml}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"@airtable/blocks": "1.18.0",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^16.14.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@airtable/blocks-testing": "^0.0.5",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@tsconfig/create-react-app": "^1.0.3",
"@types/react": "^18.2.38",
"@types/react-beautiful-dnd": "^13.1.7",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^8.0.3",
"jsdom": "^23.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"semantic-release": "^22.0.8",
"sort-package-json": "^2.6.0",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vitest": "^0.34.6"
}
}