-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 841 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
{
"scripts": {
"dev": "concurrently \"npm run tailwind\" \"npm run watch:ejs\" \"npm run server\"",
"tailwind": "npx tailwindcss -i ./src/input.css -o ./public/style.css --watch",
"watch:ejs": "browser-sync start --proxy 'http://localhost:3001' --files 'views/*.ejs, public/**/*.ejs' --no-open --no-notify --no-ui --port 3000",
"server": "node --watch app.js",
"start": "node app.js"
},
"devDependencies": {
"browser-sync": "^2.23.7",
"concurrently": "^8.2.2",
"tailwindcss": "^3.3.5"
},
"dependencies": {
"@octokit/core": "^5.0.1",
"@octokit/rest": "^20.0.2",
"autoprefixer": "^10.4.16",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"esm": "^3.2.25",
"express": "^4.18.2",
"jquery": "^3.7.1",
"marked": "^10.0.0",
"moment": "^2.29.4",
"octokit": "^3.1.2"
}
}