-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.12 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
42
43
44
45
46
47
48
49
50
{
"name": "server-vigoz",
"version": "0.1.0",
"description": "",
"main": "/dist/index.js",
"scripts": {
"start": "node -r tsconfig-paths/register -r ts-node/register dist/index.js",
"dev": "nodemon src/index.ts",
"build": "rm -r dist/ && tsc -p ."
},
"keywords": [],
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src",
".env"
],
"exec": "node -r tsconfig-paths/register -r ts-node/register",
"ext": "ts, js"
},
"author": "",
"license": "none",
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.7.5",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.16",
"nodemon": "^2.0.19",
"prettier": "2.8.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.8.3"
}
}