-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.26 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "shop-now-api",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:pxls00/shop-now-api.git",
"author": "Abdurahim <89141756+pxls00@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && tsc --project ./tsconfig.json",
"dev": "nodemon --config nodemon.json src/main.ts",
"prod": "node dist/main.js",
"lint:check": "eslint src/ --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"lint:fix": "prettier --write src/ && yarn lint:check --fix",
"test": "cross-env NODE_ENV=test jest",
"prepare": "husky install"
},
"devDependencies": {
"@apidevtools/openapi-schemas": "^2.1.0",
"@apidevtools/swagger-parser": "^10.1.0",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.3.1",
"@types/nodemailer": "^6.4.8",
"@types/pino": "^7.0.5",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"babel-jest": "^29.5.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"mongodb-memory-server": "^8.13.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "4.9"
},
"dependencies": {
"@types/jest": "^29.5.2",
"@types/supertest": "^2.0.12",
"bcrypt": "^5.1.0",
"config": "^3.3.9",
"cors": "^2.8.5",
"dayjs": "^1.11.8",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.4",
"mongoose-autopopulate": "^1.0.1",
"nodemailer": "^6.9.3",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3"
}
}