-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
38
39
40
41
42
43
44
45
46
{
"name": "todos-vscode-api",
"version": "1.0.0",
"description": "API for the Todos-VSCode Extension.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/sherwyn11/Todos-VSCode-API.git"
},
"author": "Sherwyn D'souza",
"license": "MIT",
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"dev": "nodemon src/index.js",
"ts-dev": "NODE_ENV=development nodemon --exec ts-node src/index.ts",
"start": "node src/index.js",
"build-and-copy": "yarn run build && cp .env.example ./dist",
"deploy": "git add . && git commit -m \"[deploy] deployed to Heroku\" && git push origin master"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.6",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.32"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongodb": "^3.6.12",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.37",
"@types/passport": "^1.0.6",
"@types/passport-github": "^1.1.5",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}