-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.27 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
47
{
"name": "admin-api-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/server/start.js",
"dev": "NODE_ENV=development ts-node-dev --respawn src/server/start.ts",
"test": "jest --config jest.config.json",
"build": "tsc --project tsconfig.build.json",
"prettier:check": "prettier --check --config .prettierrc.json ./src",
"prettier:fix": "prettier --write --config .prettierrc.json ./src"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/amqplib": "^0.10.0",
"@types/convict": "^6.1.1",
"@types/jest": "^29.2.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.9",
"@types/uuid": "^8.3.4",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"tsx": "^3.12.1",
"typescript": "^4.9.3"
},
"dependencies": {
"ajv": "^8.11.2",
"ajv-formats": "^2.1.1",
"amqplib": "^0.10.3",
"convict": "^6.2.3",
"dayjs": "^1.11.6",
"diod": "^2.0.0",
"fastify": "^4.10.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.12.1",
"reflect-metadata": "^0.1.13",
"uuid": "^9.0.0"
}
}