forked from alexandtheweb/uxbrighton-prototype
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "uxbrighton",
"version": "1.0.0",
"description": "Codebase for the UX Brighton website.",
"repository": {
"type": "git",
"url": "git+https://github.com/dannyhope/uxbrighton.git"
},
"bugs": {
"url": "https://github.com/dannyhope/uxbrighton/issues"
},
"homepage": "https://github.com/dannyhope/uxbrighton#readme",
"author": "UX Brighton",
"license": "ISC",
"scripts": {
"install-deps": "bash ./.devcontainer/postCreateCommand.sh && bash ./.devcontainer/postStartCommand.sh",
"start": "bundle exec jekyll build",
"dev": "bundle exec jekyll serve --livereload",
"build": "bundle exec jekyll build",
"build:styles-dev": "cd dev-scripts && bash generate_css.sh",
"build:styles-prod": "cd dev-scripts && bash generate_css_compressed.sh",
"cms-local": "npx netlify-cms-proxy-server"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"rimraf": "^5.0.5",
"netlify-cms-proxy-server": "^1.3.24"
},
"dependencies": {
"axios": "^1.6.8",
"fs-extra": "^11.2.0",
"netlify-cms-proxy-server": "^1.3.24"
}
}