-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "bloggy",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"start": "node dist/server.js",
"build": "tsc",
"dev": "concurrently \"npm:tailwind:watch\" \"npm:server\"",
"server": "ts-node src/server.ts",
"lint": "eslint . --ext .ts",
"tailwind:css": "postcss public/styles/tailwind.css -o public/styles/style.css",
"tailwind:watch": "postcss public/styles/tailwind.css -o public/styles/style.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tailwindcss/typography": "^0.5.12",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/multer": "^1.4.11",
"@types/pg": "^8.11.2",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"daisyui": "^4.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.0",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@google-cloud/storage": "^7.8.0",
"@types/google-cloud__storage": "^2.3.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^7.2.0",
"express-session": "^1.18.0",
"md-block": "^0.0.1",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.3"
}
}