-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 874 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
{
"name": "goal-app-server",
"version": "0.0.1",
"description": "Goalsetter App built with MERN stack and TypeScript",
"license": "MIT",
"author": "Anurag Pramanik <[email protected]>",
"main": "build/index.js",
"scripts": {
"build": "tsc && npm install --prefix frontend && npm run build --prefix frontend",
"dev:be": "node --watch build/index.js",
"dev:fe": "npm run dev --prefix frontend",
"start": "node build/index.js",
"watch": "tsc -w"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.12.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^18.11.17",
"typescript": "^4.9.4"
}
}