-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.21 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
69
70
71
{
"name": "sso",
"version": "1.0.0",
"description": "SSO System",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=prod node build/src/index.js",
"dev": "NODE_ENV=dev ts-node-dev -r tsconfig-paths/register ./src/index.ts",
"build": "tsc && resolve-tspaths",
"prepare": "husky install",
"pre-commit": "lint-staged",
"typeorm": "ts-node -r tsconfig-paths/register node_modules/.bin/typeorm -d src/services/database/typeorm/data-source.ts",
"migration:generate": "npm run typeorm -- migration:generate src/services/database/typeorm/migrations/${npm_config_name}",
"migration:up": "npm run typeorm -- migration:run",
"migration:down": "npm run typeorm -- migration:revert"
},
"lint-staged": {
"{*.js,*.jsx,*.ts,*.tsx}": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "[email protected]:GabrielZilmar/sso.git"
},
"author": "GabrielZilmar",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/glob": "^8.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^16.11.10",
"@types/nodemailer": "^6.4.7",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.25.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"resolve-tspaths": "^0.8.1",
"ts-node": "10.7.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"typescript": "4.5.2"
},
"dependencies": {
"@gabrielzilmar/event-emitter": "^0.0.1",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.1",
"nodemailer": "^6.9.0",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.17",
"typeorm-naming-strategies": "^4.1.0",
"uuid": "^9.0.0"
}
}