-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "nestjs-auth0-integration",
"version": "1.0.0",
"description": "A brief description of what this project does and who it's for",
"workspaces": [
"api",
"app"
],
"main": "index.js",
"private": true,
"scripts": {
"add": "npm install --package-lock-only --no-package-lock --prefix",
"postadd": "npm install",
"app": "npm run start -w app",
"api": "npm run start:dev -w api"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^12.20.13",
"@typescript-eslint/eslint-plugin": "4.2.0",
"@typescript-eslint/parser": "4.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"prettier": "^2.1.2",
"typescript": "^4.2.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/AloisCRR/nestjs-auth0-integration.git"
},
"author": "Alois Carrera",
"license": "ISC",
"bugs": {
"url": "https://github.com/AloisCRR/nestjs-auth0-integration/issues"
},
"homepage": "https://github.com/AloisCRR/nestjs-auth0-integration#readme"
}