This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.93 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
{
"name": "audiodealer",
"version": "1.0.0",
"author": "Fedor Alekseev",
"scripts": {
"front:start": "cd frontend && react-scripts start",
"front:build": "cd frontend && react-scripts build",
"front:test": "cd frontend && react-scripts test",
"front:eject": "cd frontend && react-scripts eject",
"back:test": "cd backend && jest",
"back:build": "cd backend && npx tsc",
"back:start": "cd backend && node dist/index.js",
"back:dev": "cd backend && concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@jest/globals": "^29.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^27.5.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/luxon": "^3.3.0",
"@types/morgan": "^1.9.4",
"@types/node": "^16.18.23",
"@types/pg": "^8.6.6",
"@types/pg-format": "^1.0.2",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"axios": "^1.3.5",
"body-parser": "^1.20.2",
"bootstrap": "^5.2.3",
"classnames": "^2.3.2",
"concurrently": "^8.0.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jest": "^29.5.0",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.3.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.22",
"pg": "^8.10.0",
"pg-format": "^1.0.4",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-bootstrap": "^2.7.3",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"react-scripts": "5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4",
"winston": "^3.8.2",
"xlsx": "^0.18.5"
}
}