-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "dictionary-server",
"version": "1.0.0",
"description": "Dictionary API",
"main": "src/server.ts",
"scripts": {
"watch": "nodemon src/server.ts",
"test": "jest",
"start": "PORT=8000 node src/server.ts",
"build": "tsc",
"dev": "ts-node src/server.ts",
"watch-dev": "nodemon --watch src --exec ts-node src/server.ts"
},
"keywords": [],
"author": "Dmitriy Korytnyi",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"helmet": "^8.0.0",
"mongoose": "^8.8.4",
"morgan": "^1.10.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/mongoose": "^5.11.96",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.5",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.2.4",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}