forked from palantirnet/solr-faceted-search-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "solr-faceted-search-react-2",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ejuste/solr-faceted-search-react.git"
},
"scripts": {
"start-old": "scripts/watch.sh",
"test-old": "mocha --compilers js:babel-core/register --recursive test",
"test:watch": "nodemon -x \"mocha --compilers js:babel-core/register --recursive --watch test\" -w test -w build",
"start": "react-scripts start",
"build": "rm -rf dist && cross-env NODE_ENV=production node_modules/.bin/babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"license": "MIT",
"peerDependencies": {},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react": ">= 16",
"react-dom": ">= 16",
"react-html-parser": "^2.0.2",
"xhr": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-destructuring": "^7.1.2",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@types/react": "^0.14.30",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"cross-env": "^5.2.0",
"css-loader": "^0.23.1",
"derequire": "^2.0.3",
"envify": "^3.4.1",
"eslint-plugin-react": "^7.11.0",
"expect": "^1.14.0",
"file-loader": "^0.9.0",
"mocha": "^2.4.5",
"nodemon": "^1.8.1",
"react-scripts": "2.0.3",
"sinon": "^1.17.6",
"watchify": "^3.7.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}