-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.37 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.37 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
76
77
78
79
80
81
82
83
84
85
{
"name": "fire-detection",
"version": "0.1.1",
"engines": {
"node": "14.x"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": []
},
"private": true,
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@tensorflow-models/mobilenet": "^2.1.0",
"@tensorflow/tfjs": "^3.7.0",
"@tensorflow/tfjs-converter": "^3.7.0",
"@tensorflow/tfjs-vis": "^1.5.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"aws-sdk": "^2.939.0",
"bootstrap": "^4.6.0",
"classnames": "2.2.6",
"cors-anywhere": "^0.4.4",
"image-url-validator": "^1.0.4",
"mock-aws-s3": "^4.0.2",
"moment": "2.29.1",
"nock": "^13.1.0",
"node-sass": "5.0.0",
"nouislider": "14.6.4",
"plotly.js": "^2.2.1",
"postcss-loader": "^6.1.1",
"react": "^17.0.2",
"react-alert": "^7.0.3",
"react-alert-template-mui": "^1.0.7",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.2",
"react-plotly.js": "^2.5.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-styles-hook": "^1.1.2",
"reactstrap": "^8.9.0",
"sass": "^1.35.1",
"typescript": "^4.3.5",
"use-validate-image-url": "^1.0.0",
"web-vitals": "^1.0.1"
},
"optionalDependencies": {
"fsevents": "2.3.2"
},
"scripts": {
"start": "react-scripts start && cd node_modules/cors-anywhere/lib/ && npm run start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"compile-sass": "node-sass src/assets/scss/paper-kit.scss src/assets/css/paper-kit.css",
"minify-sass": "node-sass src/assets/scss/paper-kit.scss src/assets/css/paper-kit.min.css --output-style compressed",
"map-sass": "node-sass src/assets/scss/paper-kit.scss src/assets/css/paper-kit.css --source-map true"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"install-peers": "^1.0.3"
}
}