This repository was archived by the owner on Sep 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.5 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
39
40
41
42
43
44
45
{
"name": "qoverflow",
"version": "1.0.0",
"description": "A small application that addresses the requirements in a BDPA problem statement challenge. This features a small web application where questions can be answered, with accounts, upvotes, downvotes and more",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"nodemon-watch": "nodemon index.js",
"build-css": "tailwindcss build ./src/index.css -o ./public/index.css",
"watch-css": "tailwindcss build ./src/index.css -o ./public/index.css --watch",
"start": "npm run build-css && pm2 start . --exp-backoff-restart-delay=100"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codergautam/qOverflow.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codergautam/qOverflow/issues"
},
"homepage": "https://github.com/codergautam/qOverflow#readme",
"dependencies": {
"better-sqlite3": "^7.6.1",
"better-sqlite3-session-store": "^0.1.0",
"body-parser": "^1.20.0",
"concurrently": "^7.2.2",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-session": "^1.17.3",
"gravatar": "^1.8.2",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.19",
"socket.io": "^4.5.1",
"webpack": "^5.73.0"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.4",
"tailwindcss": "^3.1.5"
}
}