forked from joinimagine/imagine_home_assignments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "imagine-bookstore-api",
"version": "1.0.0",
"description": "Imagine Bookstore API",
"main": "index.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev src/index.ts",
"start": "cross-env NODE_ENV=production node build/src/index.js",
"build": "del build/* && tsc",
"build:win": "del-cli build/* && tsc",
"test": "cross-env NODE_ENV=test jest --forceExit",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"pretty": "prettier --write ."
},
"author": {
"name": "Ali Shefaee",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"app-root-path": "^3.1.0",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"del-cli": "^5.0.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-http-context": "^1.2.4",
"mongodb-memory-server": "^8.12.2",
"mongoose": "^6.8.4",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.3",
"typescript": "^4.9.4",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.5.0",
"@types/request-promise": "^4.1.48",
"babel-jest": "^29.5.0",
"cross-env": "^7.0.3",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0"
}
}