-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "trade-tariff-fpo-developer-hub",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"start": "node ./dist/src/app.js",
"dev": "ts-node src/app.ts",
"test": "ts-node node_modules/jasmine/bin/jasmine",
"lint": "eslint . --ext .ts",
"fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@aws-sdk/client-api-gateway": "^3.540.0",
"@aws-sdk/client-dynamodb": "^3.540.0",
"@aws-sdk/lib-dynamodb": "^3.540.0",
"@sentry/node": "^7.109.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"http-errors": "~2.0.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"morgan": "^1.10.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@sentry/types": "^7.109.0",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jasmine": "^5.1.4",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.4",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"debug": "~4.3.4",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"jasmine": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^3.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}