forked from marmelab/ra-supabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.84 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
{
"name": "ra-supabase",
"private": true,
"version": "1.0.0",
"repository": "git@github.com:marmelab/ra-supabase.git",
"author": "Gildas Garcia <1122076+djhi@users.noreply.github.com>",
"license": "MIT",
"files": [
"*.md",
"lib",
"esm",
"src"
],
"main": "lib/index",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"sideEffects": false,
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-jest": "^27.1.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",
"husky": "^2.3.0",
"jest": "^27.1.0",
"lerna": "^4.0.0",
"prettier": "~2.1.1",
"raf": "^3.4.1",
"typescript": "^4.3.4"
},
"scripts": {
"build": "lerna run build",
"build-demo": "cd packages/demo && yarn build",
"run-demo": "cd packages/demo && yarn start",
"test-unit": "lerna run test-unit",
"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}\""
},
"workspaces": [
"packages/*"
],
"jest": {
"testEnvironment": "jsdom"
}
}