-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 930 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
34
35
36
{
"name": "heroku-heroes",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"seed": "node seeds/index.js",
"tailwind": "npx tailwindcss -i ./src/input.css -o ./public/css/output.css --watch",
"dev": "nodemon server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/line-clamp": "^0.4.4",
"axios": "^0.21.1",
"bcrypt": "^5.1.0",
"connect-session-sequelize": "^7.1.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mysql2": "^3.2.0",
"node": "^19.8.1",
"node-fetch": "^3.3.1",
"sequelize": "^6.30.0"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"nodemon": "^2.0.22",
"prettier": "^2.1.2",
"tailwindcss": "^3.3.1"
}
}