forked from kyle-ruan/react-algolia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "react-algolia",
"version": "1.3.1",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"description": "React algolia library",
"repository": "https://github.com/kyle-ruan/react-algolia.git",
"author": "Kyle Ruan",
"dependencies": {
"algoliasearch": "^3.33.0",
"lodash": "^4.17.15",
"use-deep-compare-effect": "^1.3.0"
},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"clean": "rm -rf ./lib ./es ./node_modules",
"prebuild": "yarn run clean && yarn",
"build": "yarn build:commonjs && yarn build:es",
"build:commonjs": "BABEL_ENV=commonjs babel src/lib --out-dir lib",
"build:es": "BABEL_ENV=es babel src/lib --out-dir es",
"prepublishOnly": "rm -rf es lib && yarn build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"bluebird": "^3.5.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-json-view": "^1.19.1",
"react-scripts": "^3.1.1"
},
"peerDependencies": {
"react": "^16.8.1"
}
}