-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.88 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "toptal-rest-series",
"version": "0.0.1",
"description": "A guide to REST API using Typescript created for Toptal blog",
"main": "index.js",
"scripts": {
"watch": "ts-node-dev --respawn app.ts",
"prod": "ts-node --transpile-only app.ts",
"start": "tsc && node ./dist/app.js",
"debug": "export DEBUG=* && npm start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makinhs/toptal-rest-series.git"
},
"keywords": [
"REST",
"API",
"ExpressJS",
"NodeJS",
"Toptal"
],
"author": "Marcos Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/makinhs/toptal-rest-series/issues"
},
"homepage": "https://github.com/makinhs/toptal-rest-series#readme",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcrypt-nodejs": "^0.0.31",
"@types/connect-mongo": "^3.1.3",
"@types/express-session": "^1.17.4",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node-localstorage": "^1.3.0",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"bcrypt": "^5.0.1",
"bcrypt-nodejs": "^0.0.3",
"cors": "^2.8.5",
"debug": "^4.2.0",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-winston": "^4.0.5",
"jsonwebtoken": "^8.5.1",
"jwt-simple": "^0.5.6",
"mongoose": "^6.1.7",
"node-localstorage": "^3.0.5",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"shortid": "^2.2.16",
"ts-node": "^10.9.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/shortid": "0.0.29",
"source-map-support": "^0.5.16",
"ts-node-dev": "^1.1.8",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}