-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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": "@d4us1/ez-on-rails-react",
"version": "0.9.0",
"description": "Interface for communicating with ez-on-rails backends in react.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "./esbuild.mjs",
"build-types": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"*/**/*.{js,ts,tsx}\" --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/D4uS1/ez-on-rails-react"
},
"author": "Andreas Dausenau",
"license": "MIT",
"private": true,
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"dependencies": {
"@d4us1/remawy": "git+https://github.com/D4uS1/remawy#v0.2.0",
"@rails/activestorage": "^7.2.102",
"bootstrap": "^5.3.3",
"convert-keys": "^1.3.4",
"formik": "^2.4.6",
"react-bootstrap": "^2.10.5",
"react-dropzone": "^14.2.10",
"swr": "^2.2.5",
"tslib": "^2.8.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/rails__activestorage": "^7.1.1",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"esbuild": "^0.24.0",
"esbuild-css-modules-plugin": "^3.1.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": ">=18 <19"
},
"packageManager": "[email protected]"
}