forked from The-Balance-FFXIV/glam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.15 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
{
"name": "glam",
"version": "1.0.0",
"description": "\"Glam is a hugo theme for The Balance website\"",
"main": "index.js",
"repository": "https://github.com/The-Balance-FFXIV/glam",
"author": "Oowazu Nonowazu <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.1",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"netlify-cms-proxy-server": "^1.3.24",
"prettier": "^3.2.5",
"prettier-plugin-go-template": "^0.0.15"
},
"scripts": {
"start": "concurrently --kill-others-on-fail --names static,admin \"yarn start:static\" \"yarn start:admin\"",
"start:dev": "cross-env GIT_REPO_DIRECTORY=exampleSite concurrently --kill-others-on-fail --names static,admin \"yarn start:static:dev\" \"yarn start:admin\"",
"start:static": "hugo server --disableFastRender",
"start:static:dev": "hugo server -s exampleSite/ --themesDir=../.. --disableFastRender",
"start:admin": "node_modules/.bin/netlify-cms-proxy-server"
}
}