-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "consulta-prof-api",
"version": "1.0.0",
"description": "",
"main": "./api/dist/app.js",
"scripts": {
"start": "npm install -g typescript && cd api && tsc && node ./dist/app.js",
"lint": "tsc --noEmit && eslint \"**/*.{tsx,ts}\" --fix",
"build-ts": "cd api && tsc && node ./dist/app.js",
"watch-ts": "tsc -w",
"serve": "concurrently \"tsc -w\" \"nodemon api/src/app.js\"",
"test": "jest --forceExit --coverage --verbose",
"doc": "tsdoc api/src/lib"
},
"keywords": [],
"author": "José da Costa Nunes Neto",
"dependencies": {
"@hapi/joi": "^15.0.3",
"@types/cors": "^2.8.5",
"@types/hapi__joi": "^15.0.3",
"@types/helmet": "0.0.43",
"@types/sequelize": "^4.28.8",
"async": "^3.0.1",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^3.1.9-1",
"express": "^4.16.4",
"helmet": "^3.18.0",
"jsdoc": "^3.6.3",
"multer": "^1.4.1",
"mysql2": "^1.7.0",
"promise-mysql": "^3.3.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sequelize": "^5.21.2",
"sequelize-typescript": "^1.0.0",
"tsdoc": "0.0.4",
"winston": "^3.2.1"
},
"engines": {
"node": "10.x"
},
"devDependencies": {
"@types/async": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"@types/request": "^2.48.1",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"concurrently": "^4.1.2",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.5.2",
"typescript": "^3.5.2"
}
}