-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "mvc-architecture",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tailwind-watch": "tailwindcss build -i public/stylesheets/tailwind.css -o public/stylesheets/style.css --watch",
"build:css": "postcss public/stylesheets/tailwind.css -o public/stylesheets/style.css",
"test": "echo \"Error: no test specified\" && exit 1",
"nodemon-server": "nodemon --watch index.js",
"dev": "concurrently --kill-others \"yarn nodemon-server\" \"yarn tailwind-watch\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Joliwood/MVC-Architecture.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Joliwood/MVC-Architecture/issues"
},
"homepage": "https://github.com/Joliwood/MVC-Architecture#readme",
"dependencies": {
"@tailwindcss/typography": "^0.5.9",
"bcrypt": "^5.1.0",
"concurrently": "^8.1.0",
"dotenv": "^16.1.3",
"ejs": "^3.1.9",
"email-validator": "^2.0.4",
"express": "^4.18.2",
"express-session": "^1.17.3",
"password-validator": "^5.3.0",
"pg": "^8.11.0",
"postcss-cli": "^10.1.0",
"sequelize": "^6.32.0"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"daisyui": "^3.0.20",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2"
},
"engines": {
"node": ">=16.9.0"
}
}