-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 914 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 914 Bytes
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
{
"name": "sales-order-processing-api",
"version": "1.0.0",
"description": "REST API for processing Sales Orders from eCommerce platform to ERP system",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"demo": "node demo/demo.js"
},
"keywords": ["api", "orders", "erp", "typescript"],
"author": "Clark Xu : Solutions Architect",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"joi": "^17.11.0",
"winston": "^3.11.0",
"uuid": "^9.0.1",
"axios": "^1.6.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"typescript": "^5.3.3",
"ts-node": "^10.9.2"
}
}