-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.01 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "kiosk-frontend",
"version": "0.5.0",
"description": "Web application to interact with the rest of the kiosk",
"repository": {
"type": "git",
"url": "https://github.com/vanvalenlab/kiosk-frontend.git"
},
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --detectOpenHandles --coverage --no-cache",
"coveralls": "NODE_ENV=test jest --coverage && cat ./coverage/lcov.info | coveralls",
"clean": "rm -rf ./build",
"build:client": "react-scripts build",
"build:server": "babel -d ./build/server ./server -s",
"build": "yarn clean && yarn build:client && yarn build:server",
"dev:server": "nodemon --exec babel-node ./server/index.js",
"dev:client": "react-scripts start",
"start": "concurrently --kill-others-on-fail \"yarn dev:server\" \"yarn dev:client\"",
"start:prod": "DEBUG='express:*' NODE_ENV='production' node ./build/server/index.js",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"author": "The Van Valen Lab",
"license": "SEE LICENSE IN LICENSE",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@google-cloud/storage": "^5.8.1",
"@mui/icons-material": "^5.3.1",
"@mui/material": "^5.4.0",
"@mui/styles": "^5.3.0",
"aws-sdk": "^2.699.0",
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-winston": "^3.0.0",
"helmet": "^3.21.1",
"history": "^4.10.1",
"http-status": "^1.3.2",
"ioredis": "^4.14.1",
"joi": "^17.2.1",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"query-string": "^6.13.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.1",
"react-ga": "^3.3.0",
"react-icons": "^4.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.1.1",
"react-scripts": "^4.0.3",
"react-tabs": "^3.2.0",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-react": "^3.51.2",
"uuid": "^8.1.0",
"web-vitals": "^1.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.0",
"babel-jest": "^26.6.3",
"concurrently": "^6.2.0",
"coveralls": "^3.1.0",
"husky": "^7.0.4",
"ioredis-mock": "^5.2.2",
"nodemon": "^2.0.4",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"supertest": "^6.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"proxy": "http://localhost:8080"
}