-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "shakemate",
"version": "1.0.0",
"main": "dist/app.js",
"license": "MIT",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts --watch src public",
"build": "tsc -p tsconfig.json",
"lint": "eslint src/**/*.ts",
"format": "prettier '**/*.{js,ts,mjs,cjs,json,css,scss}' --write",
"lint:fix": "eslint src/**/*.ts --fix"
},
"dependencies": {
"@fastify/express": "^2.3.0",
"@fastify/static": "^6.6.0",
"@fastify/view": "^7.3.0",
"@fastify/websocket": "^7.1.1",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"node-cron": "^3.0.2",
"peer": "^0.6.1",
"peerjs": "^1.4.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/ejs": "^3.1.1",
"@types/node": "^18.19.39",
"@types/node-cron": "^3.0.7",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"fastify": "^4.28.1",
"nodemon": "^3.1.4",
"prettier": "^3.0.3",
"rimraf": "^4.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.5.3"
},
"engines": {
"node": "18.x"
}
}