-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "server-starter-typescript",
"version": "0.0.1",
"main": "src/cluster.js",
"scripts": {
"test": "make test",
"start": "make run",
"precommit": "make lint && git add ."
},
"engines": {
"node": ">=10.0.0"
},
"author": "Ruan Martinelli",
"license": "MIT",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.22",
"@types/joi": "^14.3.4",
"@types/lodash": "^4.14.168",
"@types/pino": "^6.3.7",
"@types/supertest": "^2.0.8",
"@types/throng": "^5.0.0",
"@types/uuid": "^8.3.0",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"fastify": "^2.15.1",
"fastify-cors": "^3.0.3",
"fastify-helmet": "^3.0.2",
"husky": "^6.0.0",
"jest": "^25.5.4",
"jest-extended": "^0.11.5",
"joi": "^14.3.1",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"nodemon": "^2.0.7",
"pino": "^6.11.2",
"pino-pretty": "^4.7.1",
"prettier": "^2.2.1",
"throng": "^5.0.0",
"ts-jest": "^25.5.1",
"ts-node": "^9.1.1",
"typescript": "^3.9.9",
"uuid": "^8.3.2"
},
"_moduleAliases": {
"@app": "dist/src",
"@test": "dist/test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0"
}
}