-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.6 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "appid-api",
"version": "1.0.0",
"description": "AppID API for Custom Login, Change Password, and Edit Profile",
"main": "src/app.ts",
"private": true,
"scripts": {
"start": "ts-node --transpile-only src/app.ts",
"dev": "concurrently -k \"npm:dev:server\" \"npm:dev:spec\"",
"dev:spec": "ts-node-dev --respawn --transpile-only --watch 'src/**/*.ts' -- node_modules/tsoa/dist/cli.js spec-and-routes",
"dev:server": "ts-node-dev --respawn --transpile-only src/app.ts",
"build": "tsoa spec-and-routes",
"test": "jest --detectOpenHandles --runInBand",
"lint": "eslint --ext .ts,.json src",
"lintfix": "eslint src --fix --cache",
"test:pact": "npx jest --testTimeout 30000 --testMatch \"^.+pact\\.ts$\"",
"delete-pacts-local": "rm ./pact/pacts/*.json",
"pact-publish": "node publish.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/michaelsteven/appid-api"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.58.0",
"@pact-foundation/pact": "^9.17.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"i18n": "^0.14.2",
"ibm-cos-sdk": "^1.11.0",
"ibmcloud-appid": "^6.2.5",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.5",
"jwt-decode": "^3.1.2",
"multer": "^1.4.4",
"redis": "^4.0.6",
"sharp": "^0.30.3",
"swagger-ui-express": "^4.3.0",
"tsoa": "^3.14.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/config": "^0.0.41",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/i18n": "^0.13.2",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/jwk-to-pem": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.23",
"@types/sharp": "^0.30.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-jest": "^27.5.1",
"concurrently": "^7.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.4",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
}
}