-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "vex",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "16.11.19",
"prisma": "3.7.0",
"tailwindcss": "^3.0.23",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"scripts": {
"dev": "npx tailwindcss -i ./public/stylesheets/source.css -o ./public/stylesheets/dist/style.css && ts-node ./index.ts",
"generate": "npx prisma generate",
"migrate": "npx prisma migrate dev"
},
"dependencies": {
"@prisma/client": "3.7.0",
"csurf": "^1.11.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-handlebars": "^6.0.2",
"express-rate-limit": "^6.3.0",
"express-session": "^1.17.2",
"nodemailer": "^6.7.2"
},
"engines": {
"node": ">=12.2.0"
},
"description": "Vex makes it easy to quickly setup an expressjs app with authentication and a database.",
"version": "1.0.0",
"main": "index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Wqrld/Vex.git"
},
"keywords": [
"expressjs",
"exress",
"html",
"handlebars",
"web"
],
"author": "Wqrld",
"bugs": {
"url": "https://github.com/Wqrld/Vex/issues"
},
"homepage": "https://github.com/Wqrld/Vex#readme"
}