-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.19 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
{
"name": "ra-directus-monorepo",
"private": true,
"author": "Marmelab",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"prettier": "~2.1.1",
"raf": "^3.4.1",
"typescript": "^5.5.4",
"@types/jest": "^29.1.0",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.1.1",
"ts-jest": "^29.0.3"
},
"scripts": {
"build": "yarn workspaces run build",
"build-demo": "cd packages/demo && yarn build",
"run-demo": "cd packages/demo && yarn dev",
"lint": "eslint --fix --ext .js,.ts,.tsx \"./packages/**/src/**/*.{js,ts,tsx}\"",
"prettier": "prettier --write \"./packages/**/src/**/*.{js,ts,tsx}\""
},
"workspaces": [
"packages/*"
]
}