-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 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
45
46
{
"name": "mongo-server",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"develop": "ts-node-dev src/index.ts",
"build": "tsc",
"lint": "eslint src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/get-shit-done/mongo-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/get-shit-done/mongo-server/issues"
},
"homepage": "https://github.com/get-shit-done/mongo-server#readme",
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-session": "^2.0.41",
"@types/cors": "^2.8.6",
"body-parser": "^1.19.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.23.3",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-typescript": "^0.14.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.50",
"typescript": "^3.9.6"
}
}