-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 863 Bytes
/
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
{
"name": "habitica-calendia",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "set NODE_ENV=production && node ./bin/www",
"dev:server": "set DEBUG=habitica-calendia:* && set NODE_ENV=development && nodemon ./bin/www",
"dev:client": "cd client && npm run dev",
"build-client": "cd client && npm install && npm run build",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\""
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.5",
"debug": "^4.3.4",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"mongoose": "^6.6.5",
"morgan": "~1.10.0"
},
"main": "app.js",
"author": "Bao Huynh",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/cors": "^2.8.12",
"concurrently": "^7.4.0"
}
}