-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.66 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
85
{
"name": "fitgive",
"version": "0.1.0",
"description": "FitGive. Capstone SEG 2910 Fall 2020",
"private": true,
"main": "dist/index.js",
"engines": {
"node": "10.x",
"npm": "6.x"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "4.10.0",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.3.10",
"@tensorflow/tfjs": "^3.0.0",
"@tensorflow/tfjs-backend-webgl": "^3.0.0",
"@tensorflow/tfjs-converter": "^3.0.0",
"@tensorflow/tfjs-core": "^3.0.0",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"chartist": "0.10.1",
"classnames": "2.2.6",
"date-fns": "^2.19.0",
"firebase": "^8.2.2",
"formik": "^2.2.6",
"formik-material-ui": "^3.0.1",
"history": "4.10.1",
"perfect-scrollbar": "1.5.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-chartist": "0.14.3",
"react-credit-cards": "^0.8.3",
"react-dom": "16.13.1",
"react-google-maps": "9.4.5",
"react-google-maps-loader": "^4.3.0",
"react-hooks-helper": "^1.6.0",
"react-material-ui-carousel": "^2.1.1",
"react-router-dom": "5.2.0",
"react-scripts": "^4.0.0",
"react-swipeable-views": "0.13.9"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom src/__test__",
"test:coverage": "react-scripts test --env=jsdom src/__test__ --coverage --watchAll=false",
"test:integration": "cypress open",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"lint:check": "eslint . --ext=js,jsx; exit 0",
"lint:fix": "eslint . --ext=js,jsx --fix; exit 0",
"build-package-css": "cp src/assets/css/material-dashboard-react.css dist/material-dashboard-react.css",
"build-package": "npm run build-package-css && babel src --out-dir dist"
},
"optionalDependencies": {
"@types/googlemaps": "3.39.6",
"@types/markerclustererplus": "2.1.33",
"ajv": "6.12.2",
"typescript": "3.9.3"
},
"devDependencies": {
"@tensorflow-models/posenet": "^2.2.2",
"cypress": "^6.8.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"prettier": "2.0.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}