-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.24 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
63
64
65
66
67
68
{
"name": "daily-do-it",
"version": "1.0.0",
"description": "",
"main": "dist/daily-do-it.js",
"type": "module",
"scripts": {
"start": "npm run build && concurrently --kill-others \"npx tsc --watch\" \"npx tsc --watch --project tsconfig.frontend.json \" \"nodemon\" \"npm run tailwind:watch\"",
"build": "npm run build:clean && npm run build:copy && npm run tailwind && npx tsc && npx tsc --project tsconfig.frontend.json",
"build:clean": "rm -rf dist",
"build:copy": "copyfiles -u 1 -e 'src/public/main.css' -e 'src/public/*.ts' 'src/views/**/*.*' 'src/public/**/*.*' dist/",
"ts:check": "npx tsc --noEmit",
"ts:check:fe": "npx tsc --noEmit --project tsconfig.frontend.json",
"tailwind": "tailwindcss -i ./src/public/main.css -o ./dist/public/main.css",
"tailwind:watch": "npm run tailwind -- --watch",
"prettier:check": "prettier . --check"
},
"author": "Oliver Ridsdale",
"license": "ISC",
"engines": {
"node": "18.16.1"
},
"volta": {
"node": "18.16.1"
},
"dependencies": {
"@sentry/node": "^7.72.0",
"body-parser": "^1.20.2",
"connect-pg-simple": "^9.0.0",
"csrf": "^3.1.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-handlebars": "^7.0.7",
"express-rate-limit": "^6.9.0",
"express-session": "^1.17.3",
"express-sitemap-xml": "^3.0.1",
"helmet": "^7.0.0",
"nodemailer": "^6.9.4",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pg": "^8.11.1",
"tailwindcss": "^3.3.3",
"validator": "^13.11.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@types/connect-pg-simple": "^7.0.0",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/express-sitemap-xml": "^3.0.2",
"@types/node": "^20.3.2",
"@types/nodemailer": "^6.4.9",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-local": "^1.0.35",
"@types/pg": "^8.10.2",
"@types/validator": "^13.11.1",
"concurrently": "^8.2.0",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.22",
"portfinder": "^1.0.32",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"typescript": "^5.1.3"
}
}