-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.56 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
{
"name": "full-stack-nodejs-react-app",
"version": "1.0.0",
"description": "A full-stack NodeJs and React project",
"scripts": {
"test": "npm run test:server && npm run test:client",
"test:server": "jest --runInBand",
"test:client": "echo 'Not implemented'",
"dev:server": "npm run build:client && nodemon src/index.ts",
"dev:client": "vite",
"dev": "start npm run dev:server && npm run dev:client",
"build": "npm run build:server",
"build:client": "vite build",
"build:server": "rimraf dist && tsc && npm run build:client",
"start": "npm run build && node dist/index.js"
},
"keywords": [
"TypeScript",
"NodeJs",
"ReactJs"
],
"author": "Stefan Hilhorst",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "1.7.4",
"dotenv": "^16.0.3",
"express": "4.18.2",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.3",
"@types/react": "^18.0.26",
"@types/supertest": "^2.0.12",
"@vitejs/plugin-react": "^3.0.0",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"rimraf": "^4.4.0",
"sass": "^1.59.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.2.1"
}
}