-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.12 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "cooking-recipes-server",
"description": "Backend project for cook recipes site that includes a RESTful API, user authentication, and more.",
"author": "afek-sakaju",
"homepage": "https://github.com/Afek-Sakaju/cooking-recipes-server",
"keywords": [
"cook-site",
"recipes",
"recipes-site",
"express"
],
"engines": {
"node": ">=14.0.0"
},
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Afek-Sakaju/cooking-recipes-server"
},
"scripts": {
"start": "npm run migrateDB && npm run build && node dist/app.js",
"dev": "npm run migrateDB && nodemon src/app.ts",
"dev-no-migrations": "nodemon src/app.ts",
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest",
"lint": "eslint --ext .ts .",
"migrateDB": "npm run migrate-mongo:up",
"migrate-mongo:init": "migrate-mongo init",
"migrate-mongo:up": "migrate-mongo up",
"migrate-mongo:down": "migrate-mongo down",
"migrate-mongo:status": "migrate-mongo status",
"migrate-mongo:create": "migrate-mongo create init-recipes"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"dotenv": "^16.0.3",
"dotenv-expand": "^9.0.0",
"express": "^4.18.1",
"express-session": "^1.17.3",
"mongoose": "^6.6.2",
"mongoose-to-swagger": "^1.4.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"sass": "^1.56.1",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.5",
"@types/jest": "^29.1.1",
"@types/migrate-mongo": "^8.2.0",
"@types/passport": "^1.0.12",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.1.2",
"jest-mock": "^29.5.0",
"migrate-mongo": "^9.0.0",
"mongodb-memory-server": "^8.9.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.8",
"supertest": "^6.2.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}