-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "Oh-My-Turtles",
"version": "0.0.1",
"description": "Mange your turtles",
"main": "src/index.ts",
"repository": "https://github.com/kalindudc/oh-my-turtles.git",
"author": "Kalindu De Costa <kalinduk.decosta@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc && yarn --cwd client build",
"start": "node ./dist/index.js",
"dev": "nodemon ./src/index.ts"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@types/node": "^22.0.2",
"async-mutex": "^0.5.0",
"basic-auth": "^2.0.1",
"bcrypt": "^5.1.1",
"express": "^4.19.2",
"express-session": "^1.18.0",
"gl-matrix": "^3.4.3",
"node-json-db": "^2.3.0",
"typescript": "^5.5.4",
"winston": "^3.13.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/basic-auth": "^1.1.8",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.12",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2"
}
}