forked from rafalzawadzki/ra-data-firestore-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·101 lines (101 loc) · 3.34 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
99
100
101
{
"name": "ra-data-firestore-client",
"version": "0.1.10",
"description": "Firestore Client for react-admin",
"main": "build/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"directories": {
"lib": "lib"
},
"keywords": [
"react-admin",
"react",
"firebase",
"firestore",
"rest"
],
"scripts": {
"build": "npm run build:es5 && npm run build:es6",
"build:es5": "npm run enable:es5 && babel src/lib -d build",
"build:es6": "npm run enable:es6 && babel src/lib -d es",
"build:watch": "npm run build:es6:watch && babel src/lib -w -d build",
"build:es6:watch": "npm run enable:es6 && babel src/lib -w -d es",
"enable:es5": "cp -f .babel-es5.json .babelrc",
"enable:es6": "cp -f .babel-es6.json .babelrc",
"publish": "npm run build",
"demo": "node scripts/start.js",
"init": "npm run build && npm link && npm link ra-data-firestore-client",
"reset": "rm -rf node_modules && rm -rf package-lock.json && npm install && npm run init",
"start": "concurrently --kill-others \"npm run build:watch\" \"npm run app-start\""
},
"author": "Rafal Zawadzki <[email protected]> (http://rafalzawadzki.com/)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/rafalzawadzki/ra-data-firestore-client.git"
},
"peerDependencies": {
"react": "16.5.0",
"react-dom": "16.5.0"
},
"devDependencies": {
"autoprefixer": "^9.1.5",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-import": "^1.4.0",
"babel-plugin-istanbul": "^1.0.3",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.11.6",
"babel-standalone": "^6.21.1",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"concurrently": "^3.5.1",
"css-loader": "^1.0.0",
"eslint": "^4.3.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-config-standard-react": "^5.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^3.0.7",
"iconfont-webpack-plugin": "^1.1.0",
"polished": "^1.1.3",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^2.0.6",
"prettier": "^1.9.2",
"promise": "^8.0.2",
"promise-polyfill": "8.1.0",
"react-addons-test-utils": "^15.5.1",
"react-dev-utils": "^4.0.0",
"style-loader": "^0.23.0",
"supports-color": "^5.5.0",
"url-loader": "^1.1.1",
"webpack": "^3.5.5",
"webpack-dev-server": "2.x",
"whatwg-fetch": "^3.0.0"
},
"dependencies": {
"firebase": "^5.5.5",
"prop-types": "^15.6.0",
"react": "16.5.0",
"react-admin": "^2.3.2",
"react-dom": "^16.5.0",
"sort-by": "^1.2.0"
}
}