-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "project-2",
"version": "1.0.0",
"description": "## Overview",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"try": "nodemon",
"seed": "node seeds/seeds.js",
"build:css": "tailwind build -i src/style.css -o public/css/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PFZM/Pilot-Log.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PFZM/Pilot-Log/issues"
},
"homepage": "https://github.com/PFZM/Pilot-Log#readme",
"dependencies": {
"@tailwindcss/forms": "^0.3.4",
"autoprefixer": "^10.4.0",
"bcrypt": "^5.0.1",
"connect-session-sequelize": "^7.1.2",
"date-fns": "^2.26.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^6.0.1",
"express-session": "^1.17.2",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.2",
"postcss": "^8.4.4",
"postcss-cli": "^9.0.2",
"sequelize": "^6.12.0-alpha.1",
"tailwindcss": "^2.2.19"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}