-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
87 lines (87 loc) · 2.78 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
{
"name": "express-mongodb-rest-api-boilerplate",
"version": "1.0.3",
"description": "A boilerplate for Node.js apps / Rest API / Authentication from scratch - express, mongodb (mongoose).",
"main": "./src",
"repository": {
"type": "git",
"url": "https://github.com/watscho/express-mongodb-rest-api-boilerplate"
},
"bugs": "https://github.com/watscho/express-mongodb-rest-api-boilerplate/issues",
"keywords": [
"express",
"mongodb",
"mongoose",
"node",
"nodejs",
"authentication",
"scratch",
"boilerplate",
"authorization",
"docker",
"api",
"rest"
],
"scripts": {
"start": "npm run rm:public && cross-env NODE_ENV=production ts-node --files -r tsconfig-paths/register ./src",
"watch": "npm run rm:public && cross-env ts-node-dev --files --respawn --inspect -r tsconfig-paths/register ./src",
"build": "npm run rm:public && cross-env NODE_ENV=production tsc && tsc-alias && npm run copy:files",
"rm:public": "rm -rf ./public",
"copy:files": "cp .env ./public/.env && cp -R ./src/templates ./public",
"seed": "ts-node --files -r tsconfig-paths/register ./src/seeds",
"lint": "eslint --debug ./src",
"lint:write": "eslint --debug ./src --fix",
"prettier": "prettier \"**/*.+(js|jsx|json|css|md)\"",
"prettier:write": "prettier --write \"**/*.+(js|jsx|json|css|md)\""
},
"author": "Watscho Aiwasov",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/cors": "2.8.12",
"@types/email-templates": "10.0.1",
"@types/express": "4.17.14",
"@types/express-serve-static-core": "4.17.33",
"@types/jsonwebtoken": "8.5.9",
"@types/multer": "1.4.7",
"@types/node": "18.8.3",
"@types/nodemailer": "6.4.7",
"@types/randomstring": "1.1.8",
"@types/sharp": "0.31.1",
"@types/validator": "13.7.11",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"cross-env": "7.0.3",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "44.0.2",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"tsc-alias": "1.7.0",
"tsconfig-paths": "4.1.0",
"typescript": "4.8.4"
},
"dependencies": {
"bcrypt": "5.1.0",
"cors": "2.8.5",
"dotenv": "16.0.3",
"ejs": "3.1.8",
"email-templates": "11.0.3",
"express": "5.0.0-beta.1",
"http-status-codes": "2.2.0",
"i18next": "22.4.9",
"i18next-http-middleware": "3.2.2",
"jsonwebtoken": "8.5.1",
"mongoose": "6.6.5",
"multer": "1.4.5-lts.1",
"nodemailer": "6.9.1",
"randomstring": "1.2.3",
"redis": "4.3.1",
"sharp": "0.31.3",
"validator": "13.7.0",
"winston": "3.8.2"
}
}