-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 865 Bytes
/
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
{
"type": "module",
"license": "MIT",
"author": "@defless",
"scripts": {
"dev": "tsx watch index.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "./node_modules/.bin/eslint"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@swc/core": "^1.4.13",
"@swc/jest": "^0.2.36",
"bcrypt": "5.1.1",
"dotenv": "16.4.5",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-jest": "27.9.0",
"fastify": "4.26.2",
"jsonwebtoken": "9.0.2",
"mongoose": "^8.2.3",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "5.4.2"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.11.28",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"jest": "29.7.0",
"mongodb-memory-server": "^9.1.8",
"ts-jest": "^29.1.2"
}
}