-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
{
"name": "order-management-boilerplate",
"version": "1.0.0",
"description": "Node.js and TypeScript boilerplate with REST API versioning, Swagger, Joi validation, authentication, authorization, MongoDB, Jest testing, and more. Perfect for building scalable and maintainable order management systems.",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/order-management-boilerplate.git"
},
"keywords": [
"nodejs",
"typescript",
"order-management",
"boilerplate"
],
"author": "Shraddha Goel",
"license": "MIT",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"typescript": "^4.3.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jest": "^26.0.24",
"@types/joi": "^17.2.3",
"@types/mocha": "^10.0.7",
"@types/mongoose": "^5.10.3",
"@types/node": "^15.12.5",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"jest": "^27.0.6",
"mongoose": "^8.5.0",
"supertest": "^7.0.0",
"swagger-ui-express": "^5.0.1",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}