-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "e-commerce",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/server.ts",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"test": "mocha -r ts-node/register ./src/__tests__/**/*.test.ts"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.0.1",
"dayjs": "^1.10.7",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb": "^4.4.0",
"mongoose": "^6.2.2",
"pino": "^7.8.0",
"pino-pretty": "^7.5.1",
"reflect-metadata": "^0.1.13",
"tscpaths": "^0.0.9",
"tsyringe": "^4.6.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.18",
"@types/supertest": "^2.0.11",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.5.5"
}
}