-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "ssr-express",
"version": "0.1.0",
"exports": "./src/server.mjs",
"scripts": {
"dev:server": "nodemon src/server.mjs",
"dev:ui": "NODE_ENV=development concurrently \"npm run standalone-ejs\" \"webpack\"",
"start": "node src/server.mjs",
"build": "NODE_ENV=production webpack",
"database": "node scripts/database.mjs",
"standalone-ejs": "node scripts/standalone-ejs.mjs"
},
"type": "module",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"connect-mongodb-session": "^3.1.1",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"mongoose": "^6.4.2",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^18.0.0",
"@types/passport": "^1.0.9",
"@types/passport-local": "^1.0.34",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.2",
"css-loader": "^6.7.1",
"log-update": "^5.0.1",
"mini-css-extract-plugin": "^2.6.1",
"nodemon": "^2.0.18",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"tailwindcss": "^3.1.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"nodemonConfig": {
"ignore": [
"public/**/*.js",
"app/**/*.js",
"scripts/**/*.{js,mjs}",
"*.config.{js,cjs}"
],
"delay": 2500
}
}