-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
98 lines (98 loc) · 3.42 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@api-platform/admin",
"version": "4.0.3",
"description": "Automatic administration interface for Hydra-enabled APIs.",
"files": [
"*.md",
"docs/*.md",
"lib",
"src"
],
"type": "module",
"exports": "./lib/index.js",
"main": "./lib/index.js",
"repository": "api-platform/admin",
"homepage": "https://github.com/api-platform/admin",
"bugs": "https://github.com/api-platform/admin/issues",
"author": "Kévin Dunglas",
"license": "MIT",
"sideEffects": false,
"dependencies": {
"@api-platform/api-doc-parser": "^0.16.6",
"jsonld": "^8.3.2",
"lodash.isplainobject": "^4.0.6",
"react-admin": "^5.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/addon-mdx-gfm": "^8.0.5",
"@storybook/addon-onboarding": "^8.0.5",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.0.5",
"@storybook/react": "^8.0.5",
"@storybook/react-webpack5": "^8.0.5",
"@storybook/test": "^8.0.5",
"@storybook/test-runner": "^0.17.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/jsonld": "^1.5.0",
"@types/lodash.isplainobject": "^4.0.0",
"@types/node": "^20.11.30",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"cross-fetch": "^4.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.12.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tree-shaking": "^1.10.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^3.2.10",
"playwright": "^1.42.1",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rimraf": "^5.0.0",
"serve": "^14.2.1",
"storybook": "^8.0.5",
"ts-jest": "^29.0.0",
"ts-node": "^10.4.0",
"typescript": "^5.2.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"scripts": {
"build": "rimraf ./lib && tsc",
"eslint-check": "eslint-config-prettier .eslintrc.cjs",
"fix": "eslint --ignore-pattern 'lib/*' --ignore-pattern 'api/*' --ext .ts,.tsx,.js --fix .",
"lint": "eslint --ignore-pattern 'lib/*' --ignore-pattern 'api/*' --ext .ts,.tsx,.js .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest src",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch src",
"watch": "tsc --watch",
"storybook": "storybook dev -p 3000",
"storybook:build": "storybook build",
"storybook:serve": "serve storybook-static",
"storybook:test": "test-storybook"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}