-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "back-end",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm-run-all tsc copy-ejs",
"dev": "ts-node-dev ./src/index.ts",
"test": "mocha -r ts-node/register './src/tests/*.spec.ts'",
"postinstall": "npm run build",
"start": "node ./dist/src/index.js",
"docs": "typedoc --entryPointStrategy expand ./src --out docs",
"copy-ejs": "ts-node ./src/tools/copyEJStoDist",
"tsc": "tsc"
},
"keywords": [],
"author": "Marcelo Spano",
"license": "ISC",
"dependencies": {
"@types/mysql2": "github:types/mysql2",
"accesscontrol": "^2.2.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"express-winston": "^4.2.0",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.10",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"mysql2": "^2.3.2",
"nodemailer": "^6.7.0",
"shelljs": "^0.8.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/mysql": "^2.15.19",
"@types/node": "^15.14.9",
"@types/shelljs": "^0.8.11",
"@types/supertest": "^2.0.11",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"supertest": "^6.1.6",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
}
}