-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 3.42 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "ptushki-backend",
"version": "0.0.1",
"description": "FrontSpot Hub: Ptushki, backend",
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/src/index.js",
"start:dev": "npm run swagger && ts-node-dev src/index.ts",
"debug": "cross-env NODE_ENV=development ts-node-dev --inspect --respawn src/index.ts",
"fixtures": "ts-node src/db/run-fixtures.ts",
"importdb": "ts-node src/db/access-parser/run.ts",
"setup-postgres": "docker-compose up",
"build": "npm run clean && npm run swagger && tsc",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf ./dist",
"test": "npm run swagger && jest --config ./jest.config.json",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"swagger": "swaggerGen -c ./swagger.config.yml"
},
"repository": {
"type": "git",
"url": "https://github.com/abahachuk/ptushki-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/abahachuk/ptushki-backend/issues"
},
"homepage": "https://github.com/abahachuk/ptushki-backend#readme",
"dependencies": {
"body-parser": "^1.18.3",
"cartesian-product": "^2.1.2",
"class-validator": "^0.9.1",
"config": "^3.0.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"country-list": "^2.1.1",
"cross-env": "^5.2.0",
"dotenv": "^7.0.0",
"exceljs": "^1.12.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"nodemailer": "^6.2.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"ramda": "^0.26.1",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.0.2",
"tslib": "^1.9.3",
"typeorm": "0.2.37",
"typeorm-fixtures-cli": "^1.9.1",
"typescript-rest": "^2.2.2",
"typescript-rest-swagger": "^1.0.4",
"winston": "^3.2.1",
"xlsx": "^0.14.3"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/config": "0.0.34",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.6",
"@types/country-list": "^2.1.0",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/jest": "^24.0.11",
"@types/jsonwebtoken": "^8.3.2",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.7",
"@types/node": "^11.11.8",
"@types/nodemailer": "^6.2.0",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/passport-local": "^1.0.33",
"@types/ramda": "^0.26.5",
"@types/request": "^2.48.1",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"ts-jest": "^24.0.1",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.3.4000"
},
"optionalDependencies": {
"node-adodb": "^5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}