-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
{
"name": "node-server-jwt-authentication",
"version": "1.0.0",
"description": "This is an authentication API scaffold built with NodeJS, Typescript, Passport, Sequelize and PostgreSQL Database.",
"main": "dist/index.js",
"scripts": {
"test": "NODE_ENV=test && jest --runInBand --detectOpenHandles",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/index",
"start:dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.1",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.0.0",
"pg-hstore": "^2.3.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.6",
"sequelize-typescript": "^1.1.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.32",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.0",
"@types/node": "^13.13.6",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/validator": "^13.0.0",
"jest": "^26.0.1",
"morgan": "^1.10.0",
"rimraf": "^3.0.2",
"sequelize-cli": "^5.5.1",
"ts-jest": "^25.5.1",
"ts-lint": "^4.5.1",
"ts-node": "^8.10.2",
"tsc-node": "0.0.3",
"typescript": "^3.8.3"
}
}