-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 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
{
"name": "splitz-backend",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"build": "tsc -p .",
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules index.ts",
"test": "jest --runInBand --detectOpenHandles --forceExit --coverage",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexandreVelloso/splitz-backend.git"
},
"author": "Alexandre Velloso Pinheiro Filho",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexandreVelloso/splitz-backend/issues"
},
"homepage": "https://github.com/AlexandreVelloso/splitz-backend#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/app-root-path": "^1.2.4",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/hapi__joi": "^17.1.2",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/nodemailer": "^6.4.0",
"@types/swagger-ui-express": "^4.1.2",
"app-root-path": "^3.0.0",
"awilix": "^4.2.6",
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"csv-parse": "^4.10.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.23.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.14",
"mysql": "^2.18.1",
"node-cache": "^5.1.1",
"objection": "^2.1.3",
"objection-password": "^3.0.0",
"rand-token": "^1.0.1",
"sqlite3": "^4.1.1",
"swagger-ui-express": "^4.1.4",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.0",
"@types/jest-json-schema": "^2.1.2",
"@types/supertest": "^2.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"faker": "^4.1.0",
"jest": "^26.1.0",
"jest-json-schema": "^2.1.0",
"nodemon": "^2.0.3",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.1.1"
}
}