-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.68 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
{
"name": "teravoz-challenge",
"version": "0.0.1",
"description": "TeraVoz Gateway Service",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"scripts": {
"coverage": "nyc --extension .ts --include 'src/**/*.ts' --reporter html npm test",
"clean": "rimraf dist/",
"pretest": "tsc -p ./tsconfig.test.json",
"test": "mocha temp/",
"dev": "node ./dist/index.js",
"build": "npm run tsc",
"start": "npm run tsc && node dist/index.js",
"tsc": "tsc",
"tsc:w": "tsc --watch",
"tslint": "tslint -- src/*.ts test/*.ts"
},
"keywords": [
"node",
"backend",
"rest",
"ddd",
"clean"
],
"author": "Vinicius Lopes",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.5",
"dotenv": "^6.1.0",
"express": "^4.17.1",
"express-pino-logger": "^4.0.0",
"global": "^4.4.0",
"knex": "^0.19.1",
"ioredis": "^4.9.1",
"mysql2": "^1.6.4",
"pino": "^5.13.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v15.11.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.27",
"@types/mocha": "^5.2.7",
"@types/dotenv": "^6.1.0",
"@types/ioredis": "4.0.8",
"@types/express": "^4.16.0",
"@types/mysql": "^2.15.5",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^12.0.7",
"@types/pino": "^5.8.8",
"@types/ramda": "types/npm-ramda#dist",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.1",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"mocha": "^2.4.5",
"ts-node": "^8.0.2",
"tslint": "^3.10.2",
"typescript": "3.2.2",
"ws": "^7.1.2"
}
}