-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
64 lines (64 loc) · 2.15 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
{
"name": "ra-supabase",
"private": true,
"version": "1.0.0",
"repository": "[email protected]:marmelab/ra-supabase.git",
"author": "Gildas Garcia <[email protected]>",
"license": "MIT",
"files": [
"*.md",
"lib",
"esm",
"src"
],
"main": "lib/index",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"sideEffects": false,
"devDependencies": {
"@testing-library/cypress": "^9.0.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^29.7.0",
"cypress": "^12.17.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^6.6.2",
"prettier": "~2.8.8",
"raf": "^3.4.1",
"supabase": "^1.178.2",
"typescript": "^4.9.5",
"ts-jest": "^29.1.0",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"build": "lerna run build",
"build-demo": "cd packages/demo && yarn build",
"run-demo": "cd packages/demo && yarn start",
"run-demo-prod": "cd packages/demo && yarn serve",
"test-unit": "jest",
"test-e2e": "cypress run",
"test-e2e-local": "cypress open",
"watch": "lerna run --parallel watch",
"lint": "eslint --fix --ext .js,.ts,.tsx \"./packages/**/src/**/*.{js,ts,tsx}\"",
"prettier": "prettier --write \"./packages/**/src/**/*.{js,ts,tsx}\"",
"db-seed": "cd packages/demo && yarn db-seed",
"db-migrate": "cd packages/demo && yarn supabase db reset",
"cypress:open": "cypress open"
},
"workspaces": [
"packages/*"
]
}