-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.01 KB
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
{
"name": "socket.io-twitter-clone",
"version": "1.0.0",
"main": "server.js",
"license": "MIT",
"scripts": {
"tailwind": "tailwindcss --input tailwind.css --output public/css/style.css --watch",
"start": "PORT=5000 NODE_ENV=production node .",
"watch": "PORT=5000 NODE_ENV=development nodemon . --ext js,pug --ignore public",
"dev:old": "concurrently --kill-others \"yarn watch\" \"yarn tailwind\"",
"dev": "yarn watch",
"build": "yarn install"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.4",
"express-session": "^1.17.3",
"helmet": "^7.1.0",
"highlight.js": "^11.9.0",
"hpp": "^0.2.3",
"mongoose": "^7.6.0",
"multer": "^1.4.5-lts.1",
"pug": "^3.0.2",
"socket.io": "^4.7.2"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.1",
"connect-livereload": "^0.6.1",
"eslint": "^8.55.0",
"livereload": "^0.9.3",
"nodemon": "^3.0.1",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3"
}
}