-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
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
{
"name": "FacetReactClient",
"version": "0.0.1",
"description": "React Client for the Virtuoso Faceted Browsing Service",
"main": "index.js",
"private": "true",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js"
},
"keywords": [],
"author": "Carl Blakeley",
"license": "ISC",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.7.0",
"babel-loader": "8.0.6",
"chai": "4.2.0",
"css-loader": "4.2.1",
"mocha": "6.1.4",
"react-hot-loader": "4.12.16",
"style-loader": "1.2.1",
"webpack": "^4.41.2",
"webpack-cli": "3.3.1",
"webpack-dev-server": "3.3.1"
},
"dependencies": {
"bootstrap": "4.4.1",
"jquery": "1.9.1",
"popper.js": "1.16.1",
"qs": "6.9.1",
"react": "16.11.0",
"react-bootstrap": "1.0.1",
"react-dom": "16.11.0",
"react-router-dom": "5.1.2"
}
}