-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.12 KB
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
{
"name": "ra-data-json-server",
"version": "5.9.1",
"description": "JSON Server data provider for react-admin",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"sideEffects": false,
"files": [
"*.md",
"dist",
"src"
],
"authors": [
"François Zaninotto"
],
"repository": "marmelab/react-admin",
"homepage": "https://github.com/marmelab/react-admin#readme",
"bugs": "https://github.com/marmelab/react-admin/issues",
"license": "MIT",
"scripts": {
"build": "yarn run build-cjs && yarn run build-esm",
"build-cjs": "rimraf ./dist/cjs && tsc --outDir dist/cjs",
"build-esm": "rimraf ./dist/esm && tsc --outDir dist/esm --module es2015",
"watch": "tsc --outDir dist/esm --module es2015 --watch"
},
"dependencies": {
"query-string": "^7.1.3",
"ra-core": "^5.9.1"
},
"devDependencies": {
"cross-env": "^5.2.0",
"rimraf": "^3.0.2",
"typescript": "^5.1.3"
},
"gitHead": "587df4c27bfcec4a756df4f95e5fc14728dfc0d7"
}