-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.3 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
{
"name": "bisite_template",
"version": "1.0.0",
"description": "TypeScript + express + nodeJS + Mongo BISITE Template",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"build-ts": "tsc",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"build": "npm-run-all clean lint build-ts copy-static-assets",
"serve": "node dist/server.js",
"start": "npm run serve",
"dev_start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts --watch views -e ts --exec npm run dev_start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Alberto Rivas-BISITE",
"license": "ISC",
"dependencies": {
"async": "^3.1.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.7.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-mongo": "^3.1.1",
"dotenv": "^8.2.0",
"ejs": "^2.7.1",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"express-validator": "^6.2.0",
"lodash": "^4.17.19",
"lusca": "^1.6.1",
"mongoose": "^5.7.7",
"nodemailer": "^6.3.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/async": "^3.0.3",
"@types/bcrypt-nodejs": "0.0.30",
"@types/bluebird": "^3.5.28",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/connect-mongo": "^3.0.0",
"@types/dotenv": "^8.2.0",
"@types/ejs": "^2.6.3",
"@types/errorhandler": "0.0.32",
"@types/eslint": "^6.1.3",
"@types/express": "^4.17.1",
"@types/express-flash": "0.0.1",
"@types/express-session": "^1.15.15",
"@types/lodash": "^4.14.144",
"@types/lusca": "^1.6.1",
"@types/mongoose": "^5.5.28",
"@types/node": "^12.12.0",
"@types/nodemailer": "^6.2.2",
"@types/passport": "^1.0.1",
"@types/passport-local": "^1.0.33",
"@types/shelljs": "^0.8.5",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}