-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "mvp-pet-app",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"engines": {
"node": ">=16.14.0",
"npm": ">=8.12.1"
},
"scripts": {
"buildtw": "tailwindcss -i ./src/css/input.css -o ./public/css/output.css",
"watch": "tailwindcss -i ./src/css/input.css -o ./public/css/output.css --watch",
"start": "npm run buildtw && node src/server.js",
"seed": "node src/seeds/seed.js",
"lint": "eslint \"**/*.js\"",
"lint-fix": "eslint --fix \"**/*.js\"",
"test": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"connect-session-sequelize": "^7.1.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-session": "^1.17.3",
"jest": "^28.1.3",
"mysql2": "^2.2.5",
"sequelize": "^6.3.5",
"tw-elements": "^1.0.0-alpha12"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.6"
}
}