-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.17 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
{
"name": "grip-ui",
"version": "0.1.0",
"description": "This repo hosts GRIP's web-ui code and deployment information.",
"main": "index.js",
"scripts": {
"clean": "rm dist/bundle.js",
"start": "npm-run-all build:css start:web",
"start:web": "parcel src/index.html --no-source-maps",
"watch:sass": "node-sass src/css/main.scss build/css/main.css -w",
"compile:sass": "node-sass src/css/main.scss build/css/main-comp.css",
"prefix:sass": "postcss --use autoprefixer -b \"last 10 versions\" build/css/main-comp.css -o build/css/main-comp.prefix.css",
"compress:css": "node-sass build/css/main-comp.prefix.css src/css/style-compressed.css --output-style compressed",
"build:css": "npm-run-all compile:sass prefix:sass compress:css",
"build:react": "parcel build src/index.html --no-source-maps",
"build": "npm-run-all build:css build:react"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InetIntel/grip-ui.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/InetIntel/grip-ui/issues"
},
"homepage": "https://github.com/InetIntel/grip-ui#readme",
"dependencies": {
"@auth0/auth0-react": "^1.6.0",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@popperjs/core": "^2.9.2",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"history": "^4.10.1",
"is-url-external": "^1.0.3",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-bootstrap-daterangepicker": "7.0.0",
"react-data-table-component": "^6.11.7",
"react-dom": "^17.0.2",
"react-google-charts": "^3.0.15",
"react-modal": "^3.14.3",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"autoprefixer": "^10.2.6",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.5",
"postcss-cli": "^8.3.1"
}
}