forked from cdiaz/nestjs-auth0
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "auth0-nestjs-regular-webapp-sample",
"version": "2.0.0",
"description": "NestJS + Auth0 Regular WebApp seed",
"repository": "git://github.com/cdiaz/nestjs-auth0",
"author": "cdiaz",
"license": "MIT",
"scripts": {
"start": "ts-node ./src/main.ts",
"start:watch": "nodemon -w *.*.ts --exec ts-node ./src/main.ts",
"assets": "cp -r ./src/assets/ ./dist/assets/",
"views": "cp -r ./src/views/ ./dist/views/",
"build": "tsc -p . && npm run views && npm run assets",
"prestart:prod": "npm run build",
"start:prod": "node dist/main.js"
},
"dependencies": {
"@nestjs/common": "^5.1.0",
"@nestjs/core": "^5.1.0",
"@nestjs/microservices": "^5.1.0",
"@nestjs/passport": "^1.1.0",
"@nestjs/websockets": "^5.1.0",
"dotenv": "^6.0.0",
"express-session": "^1.15.6",
"passport": "^0.4.0",
"passport-auth0": "^1.0.0",
"pug": "~2.0.0-rc.4",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.2"
},
"devDependencies": {
"@types/node": "^10.5.2",
"nodemon": "^1.15.0",
"ts-node": "^7.0.0",
"typescript": "^2.7.2"
}
}