-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 KB
/
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
32
33
34
35
36
37
{
"name": "vite-mern-template",
"version": "2.0.3",
"main": "backend/src/index.ts",
"scripts": {
"watch": "tsc --watch",
"backend": "node --watch build/index.js",
"dev:backend": "concurrently \"npm run watch\" \"npm run backend\"",
"dev:frontend": "npm start --prefix ./frontend",
"check-types": "tsc",
"prettier": "prettier --write .",
"build:backend": "tsc",
"build:frontend": "npm run build --prefix ./frontend",
"build": "tsc && npm run build:frontend"
},
"repository": "https://github.com/apicgg/vite-mern-template.git",
"license": "MIT",
"dependencies": {
"argon2": "^0.40.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"prettier": "3.2.5",
"typescript": "^5.7.3"
}
}