-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "craig-webapp-server",
"version": "2.0.0",
"type": "module",
"exports": "./dist/index.js",
"private": true,
"license": "MIT",
"author": {
"name": "Snazzah",
"email": "[email protected]",
"url": "https://snazzah.com/"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src",
"start:test-client": "tsx src/client",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/websocket": "^10.0.1",
"chalk": "^5.3.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"fastify": "^4.26.2",
"nanoid": "^5.0.7",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-snazzah": "^2.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
}
}