-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.08 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
72
73
74
75
76
77
78
{
"name": "arquitecturats",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": " node ./dist/index.js",
"start-dev": "ts-node --files src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p tsconfig.json",
"dev": "nodemon",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"debug": "^2.6.9",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"typedi": "^0.10.0",
"typeorm": "^0.2.32",
"typeorm-typedi-extensions": "^0.4.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.12",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/node": "^15.6.1",
"@types/passport-http": "^0.3.8",
"@types/passport-jwt": "^3.0.5",
"@types/reflect-metadata": "^0.1.0",
"@types/uuid": "^8.3.0",
"husky": "^6.0.0",
"nodemon": "^2.0.2",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run remove:build && npm run lint && npm run build && pretty-quick --staged",
"pre-push": "npm run remove:build && npm run lint && npm run build"
}
}
}