-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 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
61
62
{
"name": "east",
"version": "1.1.0",
"main": "dist/app.js",
"scripts": {
"prepare": "husky install",
"start": "node dist/app.js",
"dev": "nodemon --exec npx ts-node src/app.ts",
"lint": "eslint src --ext .ts",
"build": "gulp build",
"tailwind": "npx tailwindcss -o public/styles.css --minify"
},
"license": "MIT",
"dependencies": {
"apicache": "^1.6.3",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^7.4.3",
"nodemailer": "^6.9.4",
"shortid": "^2.2.16",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/apicache": "^1.6.2",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.5.0",
"@types/nodemailer": "^6.4.9",
"@types/shortid": "^0.0.29",
"@types/valid-url": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"daisyui": "^3.5.1",
"eslint": "^8.47.0",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write"
],
"*.{html,js}": "prettier --write"
}
}