This repository was archived by the owner on Dec 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.63 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
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
{
"name": "dfn-maintenance-gui-frontend",
"productName": "Desert Fireball Maintenance GUI Frontend",
"description": "GUI for maintaining the camera network for the Fireballs in the Sky project.",
"author": "Ryan Scott Day <[email protected]>",
"version": "0.0.0",
"license": "MIT",
"private": false,
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ScottDay/DFN-Maintenance-GUI-Frontend"
},
"engines": {
"node": ">=8.11.3",
"npm": ">=6.4.1"
},
"scripts": {
"build": "webpack --progress --bail --mode production --env.config=prod",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"start": "webpack-dev-server --mode development",
"start-open": "webpack-dev-server --mode development --open"
},
"dependencies": {
"@devexpress/dx-react-core": "1.6.0",
"@devexpress/dx-react-grid": "1.6.0",
"@devexpress/dx-react-grid-material-ui": "1.6.0",
"history": "4.7.2",
"@material-ui/core": "1.4.3",
"@material-ui/icons": "2.0.1",
"mobx": "5.0.3",
"mobx-react": "5.2.3",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-popper": "0.10.4",
"react-router-dom": "4.3.1",
"styled-components": "3.4.0",
"superagent": "3.8.3",
"superagent-defaults": "0.1.14",
"superagent-promise": "1.1.0"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-loader": "7.1.5",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"copy-webpack-plugin": "4.5.2",
"css-loader": "1.0.0",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-loader": "2.1.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.10.0",
"file-loader": "1.1.11",
"json-loader": "0.5.7",
"node-sass": "4.9.2",
"progress-bar-webpack-plugin": "1.11.0",
"react-hot-loader": "4.3.4",
"sass-loader": "7.1.0",
"semantic-release": "15.9.16",
"@semantic-release/changelog": "3.0.0",
"@semantic-release/git": "7.0.4",
"style-loader": "0.22.1",
"webpack": "4.16.5",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.5"
}
}