-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "faithful-website",
"version": "1.0.0",
"description": "The official website for the Faithful Project.",
"main": "backend/index.js",
"type": "module",
"scripts": {
"ji": "bundle install",
"jb": "bundle exec jekyll build",
"start": "pnpm run ji && pnpm run jb && pm2 start \"node backend/index.js\" --name \"WEBSITE\"",
"dev": "concurrently \"npm:dev-*\"",
"dev-watch-site": "bundle exec jekyll build --watch",
"dev-watch-app": "nodemon --watch backend --ignore _site -e js,md,ts backend/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Faithful-Resource-Pack/Website.git"
},
"keywords": [],
"author": "",
"license": "Faithful Resource Pack License",
"bugs": {
"url": "https://github.com/Faithful-Resource-Pack/Website/issues"
},
"homepage": "https://github.com/Faithful-Resource-Pack/Website#readme",
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.21.2",
"remove-markdown": "^0.6.0"
},
"devDependencies": {
"concurrently": "^9.1.0",
"nodemon": "^3.1.9"
}
}