-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.24 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
{
"name": "develop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm run seed && npm run build && npm run start:dev",
"start": "npm run client:build && npm run server",
"start:dev": "concurrently \"npm run server:dev\" \"wait-on tcp:3001 && npm run client:dev\"",
"server": "cd server && npm start",
"server:dev": "cd server && npm run dev",
"install": "cd server && npm i && cd ../client && npm i",
"client:build": "cd client && npm run build",
"client:dev": "cd client && npm run dev",
"build": "cd client && npm run build",
"seed": "cd server && npm run seeders",
"seeders": "node dist/database/seeders/sync.js",
"render-build": "npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"concurrently": "^9.1.2",
"dotenv": "^10.0.0",
"express": "^4.21.2",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0",
"pg-hstore": "^2.3.3",
"postgres": "^3.4.5",
"sequelize": "^6.6.5"
},
"devDependencies": {
"@types/pg": "^8.11.11"
}
}