-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "give-and-take",
"version": "0.0.0",
"scripts": {
"dev": "concurrently -k -n \"API,WEB\" -c \"bgBlue.bold,bgGreen.bold\" \"ts-node-dev -P tsconfig.server.json src/server/\" \"vite\"",
"build": "tsc && vite build && tsc -p tsconfig.server.json",
"preview": "vite preview",
"start": "node dist/server/",
"test": "jest",
"test:watch": "react --watch"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/style": "^0.8.0",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.9",
"@testing-library/jest-dom": "^5.16.4",
"axios": "^0.27.2",
"compression": "^1.7.4",
"express": "^4.18.1",
"express-jwt": "^8.4.1",
"helmet": "^5.1.0",
"heroku-ssl-redirect": "^0.1.1",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"password-hash": "^1.2.2",
"pg": "^8.7.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0",
"remult": "^0.13.26"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/password-hash": "^1.2.21",
"@types/pg": "^8.6.5",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"concurrently": "^7.2.0",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4",
"vite": "^2.9.9"
}
}