-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 KB
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
{
"name": "intercom-manager",
"version": "4.0.0",
"description": "Intercom manager",
"scripts": {
"test": "jest",
"prepare": "husky install",
"lint": "eslint .",
"pretty": "prettier --write --ignore-unknown .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"dev": "nodemon",
"start": "ts-node -T src/server.ts",
"postversion": "git push && git push --tags"
},
"license": "MIT",
"engines": {
"node": ">=18.15.0"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.2",
"@fastify/type-provider-typebox": "^5.1.0",
"@sinclair/typebox": "^0.32.35",
"dotenv": "^16.5.0",
"fastify": "^5.7.3",
"mongodb": "^6.16.0",
"nano": "^10.1.4",
"nodemon": "^3.1.10",
"sdp-transform": "^2.15.0",
"ts-node": "^10.9.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.100",
"@types/sdp-transform": "^2.4.9",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
}
}