forked from HashBrownCMS/hashbrown-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
{
"name": "hashbrown-cms",
"repository": "https://github.com/HashBrownCMS/hashbrown-cms.git",
"version": "1.3.1",
"description": "A free and open-source headless CMS",
"main": "hashbrown.js",
"scripts": {
"build:frontend": "webpack --progress",
"watch:frontend": "webpack --watch --watch-poll --progress",
"start": "npm run build:frontend && node hashbrown.js",
"watch:nodemon": "nodemon hashbrown.js",
"start:docker": "npm run build:frontend && cd ./docker && sudo docker-compose up --build -d",
"stop:docker": "cd ./docker && sudo docker-compose down",
"restart:docker": "cd ./docker && sudo docker-compose restart",
"watch:docker": "cd ./docker && sudo docker-compose -f docker-compose.yml -f docker-compose.watch.yml up --build -d && sudo docker-compose logs -f node",
"update": "git pull && git submodule update --recursive --init && npm install && npm run build:frontend"
},
"author": "Putaitu",
"license": "MIT",
"dependencies": {
"acorn": "^7.0.0",
"app-module-path": "^2.2.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"express": "^4.16.4",
"glob": "^7.1.3",
"js-beautify": "^1.8.9",
"json-loader": "^0.5.4",
"mongodb": "^3.1.10",
"multer": "^1.4.1",
"sass": "^1.16.0",
"semver": "^5.6.0",
"webpack": "^4.28.1",
"webpack-cli": "^3.3.0"
}
}