This repository has been archived by the owner on Jul 2, 2023. It is now read-only.
generated from aslupin/boilerplate-typescript-fastify-clean-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "carrier-management-service",
"version": "1.0.0",
"description": "carrier-management-service for logpost.com",
"main": "dist/server.js",
"scripts": {
"clean": "rimraf dist",
"start:dev": "NODE_ENV=development nodemon --delay 500ms --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"start:stag": "NODE_ENV=staging node dist/server.js",
"start:prod": "NODE_ENV=production node dist/server.js",
"build": "tsc --listEmittedFiles ",
"test": "NODE_ENV=development jest --watchAll --coverage --config 'jest.config.js'",
"test:github-action": "NODE_ENV=development jest --coverage --config 'jest.config.js'",
"test:postman": "make postman-test-api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/logpost/carrier-management-service.git"
},
"author": "logpost",
"license": "ISC",
"bugs": {
"url": "https://github.com/logpost/carrier-management-service/issues"
},
"homepage": "https://github.com/logpost/carrier-management-service#readme",
"dependencies": {
"@google-cloud/profiler": "^4.1.0",
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"config-yaml": "^1.1.4",
"dotenv": "^8.2.0",
"fastify": "^3.7.0",
"fastify-auth": "^1.0.1",
"fastify-cors": "^5.1.0",
"fastify-jwt": "^2.1.3",
"fastify-plugin": "^3.0.0",
"mongoose": "^5.10.10",
"ts-node": "^8.9.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/config-yaml": "^1.1.1",
"@types/jest": "^25.2.1",
"@types/mongoose": "^5.7.36",
"@types/node": "^13.13.4",
"@types/uuid": "^8.3.0",
"babel-jest": "^26.0.0",
"jest": "^26.0.0",
"mock-express-response": "^0.2.2",
"newman": "^5.0.1",
"nodemon": "^2.0.3",
"typescript": "^3.9.3"
},
"jest": {
"coveragePathIgnorePatterns": [
"src/config/config.ts"
]
}
}