-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 2.76 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
{
"name": "@palantirnet/federated-search-react",
"description": "A ReactJS front end for faceted Solr search.",
"version": "3.0.1",
"homepage": "https://github.com/palantirnet/federated-search-react",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.4",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"breakpoint-sass": "^2.7.0",
"core-js": "^3.6.4",
"cypress": "^4.2.0",
"eslint": "^7.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-hooks": "^1.7.0",
"gh-pages": "^2.2.0",
"moment": "2.24.0",
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "4.1.5",
"prop-types": "^15.6.1",
"query-string": "~5.0.0",
"react": "^16.3.2",
"react-animate-height": "2.0.20",
"react-dates": "^21.8.0",
"react-dom": "^16.3.2",
"react-with-direction": "1.3.1",
"replace-x": "1.5.0",
"singularitygs": "^1.7.0",
"solr-faceted-search-react": "https://github.com/palantirnet/solr-faceted-search-react",
"typescript": "^3.8.2"
},
"scripts": {
"theme-styles": "node-sass-chokidar ./theme/search_theme_override.scss ./public/css/search_theme_override.css --watch",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css theme-styles start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js copy-package remove-theme fix-media-path",
"remove-theme": "rm -rf build/css",
"copy-package": "cp -rf package.json build/static",
"fix-media-path": "replace-x '../../static/media/' '../media/' ./build/static/css/*",
"deploy": "scripts/deploy.js",
"cypress": "cypress open",
"eject": "react-scripts eject",
"postinstall": "patch-package"
},
"dependencies": {
"he": "1.2.0",
"intl": "^1.2.5",
"patch-package": "^6.2.0",
"react-aria-live": "2.0.5",
"react-autosuggest": "9.4.3",
"react-scripts": "4.0.1",
"url": "0.11.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"@babel/preset-react"
]
}
}