-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "news-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-db": "cat db_schema.sql | sqlite3 database.db",
"clean-db": "rm -f database.db",
"start": "node index.js",
"tailwind:css": "npx tailwindcss -i ./public/styles/tailwind.css -o ./public/styles/main.css --watch",
"watch": "nodemon index.js",
"dev:db": "npm run clean-db && npm run build-db",
"dev": "set NODE_ENV=development && npm run dev:db && concurrently --kill-others \"npm run watch\" \"npm run tailwind:css\""
},
"author": "Tyler Wilson",
"license": "MIT",
"dependencies": {
"@tailwindcss/forms": "^0.5.4",
"assert": "^2.0.0",
"bcrypt": "^5.1.0",
"concurrently": "^8.2.0",
"connect-livereload": "^0.6.1",
"cookie-parser": "^1.4.6",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"express-partials": "^0.3.0",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.1",
"livereload": "^0.9.3",
"postcss-cli": "^10.1.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"nodemon": "^2.0.22",
"postcss": "^8.4.25",
"tailwindcss": "^3.3.2"
}
}