forked from AranosBanazir/cryptid-spot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 945 Bytes
/
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
{
"name": "cryptid-spot",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"watch:css": "npx tailwindcss -i ./public/css/input.css -o ./public/css/output.css --watch",
"build:css": "npx tailwindcss -i ./public/css/input.css -o ./public/css/output.css --minify",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx nodemon server.js",
"seed": "node seeds/seed.js",
"postinstall": "npm run build:css"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.6",
"bcrypt": "^5.0.0",
"connect-session-sequelize": "^7.0.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-session": "^1.17.1",
"pg": "^8.11.3",
"sequelize": "^6.33.0"
},
"devDependencies": {
"daisyui": "^4.12.2",
"nodemon": "^3.1.3",
"tailwindcss": "^3.4.4"
}
}