-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "fakerest",
"version": "4.1.1",
"repository": "https://github.com/marmelab/FakeRest",
"description": "Patch XMLHttpRequest to fake a REST server based on JSON data. ",
"scripts": {
"dev": "vite",
"build": "vite build && vite build -c vite.config.min.ts",
"format": "biome format --write src",
"lint": "biome lint --apply src",
"test": "vitest",
"prepare": "husky"
},
"type": "module",
"main": "dist/fakerest.min.umd.cjs",
"module": "./dist/fakerest.min.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/fakerest.min.js",
"require": "./dist/fakerest.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"author": "François Zaninotto <fzaninotto@gmail.com>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.7.0",
"@types/lodash": "^4.17.0",
"@types/sinon": "^17.0.3",
"@vitejs/plugin-react": "^4.2.1",
"fetch-mock": "^9.11.0",
"happy-dom": "^15.10.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"msw": "^2.2.14",
"ra-data-simple-rest": "^4.16.15",
"react": "^17.0.2",
"react-admin": "^4.16.15",
"react-dom": "^17.0.2",
"sinon": "~18.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vite-plugin-dts": "^3.8.3",
"vitest": "^1.5.0"
},
"dependencies": {
"lodash": "^4.17.21"
},
"browserslist": "> 0.25%, not dead",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"biome lint --apply",
"biome format --write"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}