-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.86 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
{
"name": "flashcards",
"version": "0.1.0",
"homepage": "http://JS400-Final-Project.github.io/flashcards",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.10",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"aws-sdk": "^2.742.0",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.0",
"cors": "^2.8.5",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"firebase": "^7.14.2",
"jsonwebtoken": "^8.5.1",
"local-storage": "^2.0.0",
"material-ui": "^0.20.2",
"mongoose": "^5.9.21",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-firebaseui": "^4.1.0",
"react-fontawesome": "^1.7.1",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-search-field": "^1.1.0",
"reactstrap": "^8.5.1",
"supertest": "^4.0.2"
},
"scripts": {
"start": "node index.js",
"build": "REACT_APP_BASEURI=https://flashcards-js.herokuapp.com react-scripts build",
"dev": "react-scripts build && node index.js",
"test": "JWTSECRET=sample jest --coverage --runInBand --verbose false",
"tdd": "jest --watch --runInBand"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"jest": "^24.9.0",
"supertest": "^4.0.2"
}
}