-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.67 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.67 KB
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
{
"name": "hashbrown-cms",
"repository": "https://github.com/HashBrownCMS/hashbrown-cms.git",
"version": "1.4.6",
"description": "A free and open-source headless CMS",
"main": "hashbrown.js",
"scripts": {
"build:frontend": "webpack --progress",
"watch:frontend": "webpack --watch --progress",
"start": "npm run build:frontend && node hashbrown.js",
"update": "git pull && npm install && npm run build:frontend",
"watch:nodemon": "nodemon hashbrown.js",
"db:docker": "cd ./docker && sudo docker-compose exec mongodb mongo",
"restart:docker": "cd ./docker && sudo docker-compose restart",
"start:docker": "npm run build:frontend && cd ./docker && sudo docker-compose up --build -d",
"stop:docker": "cd ./docker && sudo docker-compose down",
"test:docker": "cd ./docker && sudo docker-compose exec node node /opt/hashbrown-cms/hashbrown.js test",
"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"
},
"author": "Jeppe Zapp",
"license": "MIT",
"dependencies": {
"app-module-path": "^2.2.0",
"codemirror": "^5.54.0",
"glob": "^7.1.3",
"json-loader": "^0.5.4",
"marked": "^2.0.0",
"mongodb": "^3.1.10",
"prosemirror-example-setup": "^1.1.2",
"prosemirror-model": "^1.10.0",
"prosemirror-schema-basic": "^1.1.2",
"prosemirror-state": "^1.3.3",
"prosemirror-view": "^1.14.13",
"sass": "^1.30.0",
"turndown": "^7.0.0",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0"
}
}