-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "user-office-visa-adapter",
"version": "0.0.1",
"description": "User Office VISA adapter",
"main": "src/index.ts",
"scripts": {
"start": "tsc && node ./build/index.js",
"debug": "ts-node-dev --inspect --respawn -T ./src/index.ts",
"build": "rm -rf ./build && tsc",
"lint": "tsc --noEmit && eslint . --ext .js,.ts --quiet",
"lint:fix": "tsc --noEmit && eslint . --ext .js,.ts --fix --quiet"
},
"keywords": [
"UOS",
"VISA"
],
"author": "SWAP",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"dependencies": {
"@user-office-software/duo-logger": "^2.0.2",
"body-parser": "^1.20.1",
"dotenv": "^14.3.2",
"express": "^4.18.1",
"express-handlebars": "^6.0.6",
"knex": "^0.95.15",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^2.0.0",
"tsyringe": "^4.7.0"
}
}