-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.09 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.09 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "api.webdev-hq.com",
"version": "1.0.0",
"description": "WebDev HQ Web API",
"main": "index.js",
"scripts": {
"update-check": "npx npm-check-updates",
"update-execute": "npx npm-check-updates -u -x chalk",
"dev": "nodemon index.js --ext=js,twig,scss --watch",
"dev-all": "concurrently \"nodemon index.js --ext=js,twig,scss --watch\" \"esbuild ./views/assets/js/index.js --outfile=/public/assets/js/scripts.min.js --bundle --minify --watch\" \"npx @tailwindcss/cli -i ./views/assets/scss/style.scss -o ./public/assets/css/style.min.css --watch\"",
"build-scripts": "esbuild ./views/assets/js/index.js --outfile=/public/assets/js/scripts.min.js --bundle --minify --watch",
"watch-tailwind": "npx @tailwindcss/cli -i ./views/assets/scss/style.scss -o ./public/assets/css/style.min.css --watch",
"prod": "SET NODE_ENV=production && node index.js --watch",
"postinstall": "prisma generate --schema=prisma/schema.prisma",
"test": "jest --detectOpenHandles"
},
"keywords": [],
"author": "Tobias Hopp",
"license": "ISC",
"dependencies": {
"@prisma/adapter-mariadb": "^7.3.0",
"@prisma/client": "^7.3.0",
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/postcss": "^4.1.18",
"bcrypt": "^6.0.0",
"chalk": "^4.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-session": "^1.19.0",
"fs": "^0.0.1-security",
"handlebars": "^4.7.8",
"joi": "^18.0.2",
"jsonwebtoken": "^9.0.3",
"module-alias": "^2.2.3",
"mysql2": "^3.16.1",
"nodemailer": "^7.0.12",
"npm-check-updates": "^19.3.1",
"path": "^0.12.7",
"slugify": "^1.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tailwindcss": "^4.1.18",
"twig": "^1.17.1",
"unsplash-js": "^7.0.20"
},
"devDependencies": {
"autoprefixer": "^10.4.23",
"babel-loader": "^10.0.0",
"chokidar": "^5.0.0",
"concurrently": "^9.2.1",
"css-loader": "^7.1.2",
"esbuild": "^0.27.2",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"prisma": "^7.3.0",
"sass": "^1.97.3",
"supertest": "^7.2.2"
},
"_moduleAliases": {
"@": "./"
}
}