-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "ra-customizable-datagrid",
"version": "1.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "babel ./src/ -d lib",
"demo": "npm run start --prefix ./demo",
"demo-install": "yarn install --cwd ./demo && yarn install && npm run install:peers",
"install:peers": "yarn add -P $(jq -r '.peerDependencies | to_entries | map(\"\\(.key)@\\(.value | tostring)\") | join(\" \")' package.json)",
"prettier-js": "prettier --write '{src,demo}/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fizix-io/ra-customizable-datagrid.git"
},
"keywords": [
"React",
"React-Admin",
"List"
],
"author": "FIZIX, @akselsledins",
"license": "MIT",
"bugs": {
"url": "https://github.com/fizix-io/ra-customizable-datagrid/issues"
},
"homepage": "https://github.com/fizix-io/ra-customizable-datagrid#readme",
"peerDependencies": {
"@material-ui/core": "^1.0.0",
"@material-ui/icons": "^1.0.0",
"react": "^16.4.1",
"react-admin": "^2.1.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"hard-source-webpack-plugin": "^0.11.1",
"prettier": "^1.13.7"
}
}