-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.31 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
{
"name": "snappy-book-review",
"version": "0.2.0",
"description": "A little book website written in TypeScript.",
"main": "dist/server.js",
"engines": {
"node": "16.x"
},
"scripts": {
"setup": "ts-node setup.ts",
"clean": "rimraf dist/*",
"build-tsc": "tsc",
"build-sass": "sass src/public/sass:dist/public/css",
"build-public-js": "webpack --config webpack-public-js.config.ts",
"build": "npm run clean && npm run lint && npm run build-tsc && npm run build-sass && npm run build-public-js && npm run copy-assets && echo \"Build completed successfully.\"",
"copy-assets": "ts-node copyAssets.ts",
"lint": "tsc --noEmit && eslint . --ext .ts --fix",
"serve-debug": "nodemon --inspect dist/server.js",
"serve": "node dist/server.js",
"start": "npm run serve",
"postinstall": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Gabor Szita",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"bcrypt": "^5.0.1",
"bootstrap": "^5.1.3",
"compression": "^1.7.4",
"connect-mongodb-session": "^3.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"errorhandler": "^1.5.1",
"express": "^4.18.1",
"express-minify": "^1.0.0",
"express-session": "^1.17.3",
"express-sslify": "^1.2.0",
"express-validator": "^6.14.2",
"mongoose": "^6.4.0",
"nodemailer": "^6.7.5",
"on-headers": "^1.0.2",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"set-cookie-parser": "^2.5.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.4",
"@types/on-headers": "^1.0.0",
"@types/passport": "^1.0.9",
"@types/passport-local": "^1.0.34",
"@types/set-cookie-parser": "^2.4.2",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"glob": "^8.0.3",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"sass": "^1.53.0",
"shelljs": "^0.8.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}