-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.56 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
82
83
84
{
"name": "apps-sdk-local-server",
"version": "1.0.0",
"type": "module",
"description": "A local server to support the `apps-sdk` package local development",
"main": "./dist/app.js",
"keywords": [
"monday",
"monday.com",
"monday",
"apps",
"monday-apps",
"monday-code",
"apps"
],
"author": "monday.com Apps Team",
"repository": {
"type": "git",
"url": "git+https://github.com/mondaycom/apps-sdk-local-server.git"
},
"engines": {
"node": ">= 20.11.0"
},
"license": "MIT",
"scripts": {
"start": "node ./dist/src/app.js",
"dev": "tsc-watch -p tsconfig.build.json --onSuccess 'npm run start-with-debugger'",
"start-with-debugger": "npm run start-tsc-alias && NODE_TLS_REJECT_UNAUTHORIZED=0 node --inspect=0.0.0.0:9229 ./dist/src/app.js",
"start-tsc-alias": "tsc-alias -f -p tsconfig.build.json",
"test": "NODE_ENV=test jest --forceExit",
"test:coverage": "npm run test -- --coverage",
"transpile": "rm -rf ./dist && tsc -p tsconfig.build.json && tsc-alias -f -p tsconfig.build.json",
"build": "tsoa spec-and-routes && npm run transpile",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "npm run lint -- --fix",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check .",
"circular-dependency-check": "madge -c .",
"prepare": "husky install"
},
"dependencies": {
"@tsoa/runtime": "^6.4.0",
"app-root-path": "^3.1.0",
"cors": "^2.8.5",
"express": "4.19.2",
"express-async-errors": "^3.1.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"swagger-ui-express": "^5.0.0",
"toad-scheduler": "^3.0.1",
"tslib": "^2.6.2",
"tsoa": "^6.4.0",
"uuid": "^9.0.1",
"yamljs": "^0.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.8",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"madge": "^6.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsc-alias": "^1.8.8",
"tsc-watch": "^6.2.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}