-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 865 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 865 Bytes
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
{
"name": "react-express-auth-template",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"build": "cd frontend && npm i && npm run build && cd ../server && npm i ",
"build:frontend": "cd frontend && npm i && npm run build",
"start": "cd server && npm start",
"dev": "cd server && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"connect": "psql -U postgres -d react_auth_example",
"lint": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"cors": "^2.8.5",
"eslint": "^9.2.0",
"express": "^4.19.2",
"firebase": "^10.11.1",
"knex": "^3.1.0",
"peer": "^1.0.2",
"pg": "^8.11.5",
"react": "^18.3.1",
"socket.io": "^4.7.5"
},
"devDependencies": {
"typescript": "^5.4.5"
}
}