-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (43 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (43 loc) · 1.2 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
{
"name": "world-text-foundation-acronyms",
"version": "1.0.0",
"description": "WTF Acronym WebAPI service",
"author": "Paul Shpilsher",
"license": "ISC",
"main": "dist/index.js",
"scripts": {
"postinstall": "node-config-ts",
"mongo": "docker run -d -p 27017:27017 --name wtf-mongo mongo:latest",
"build": "tsc",
"start": "ts-node ./src/index.ts",
"dev": "nodemon ./src/index.ts",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/http-status": "^1.1.2",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"express": "^4.17.2",
"helmet": "^5.0.2",
"http-status": "^1.5.0",
"mongodb": "^4.3.1",
"mongoose": "^5.10.0",
"mongoose-fuzzy-searching": "^2.0.2",
"node-config-ts": "^3.1.0"
}
}