-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.39 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": "company-theme",
"version": "1.0.0",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@compodoc/live-server": "^1.2.3",
"adm-zip": "^0.5.10",
"eleventy-plugin-svg-sprite": "^1.3.0",
"glob": "^8.1.0",
"glob-promise": "^6.0.5",
"gzip-cli": "^1.2.0",
"htmlhint": "^1.1.4",
"markdown-it-attrs": "^4.1.6",
"markdown-it-imsize": "^2.0.1",
"nodemon": "^3.0.1",
"prettier": "2.7.1"
},
"nodemonConfig": {
"watch": [
"site/**/*.*",
"components/Styling/styles/*.*",
"components/Styling/scripts/*.*",
"tailwind.config.js",
"components/Resources/*.*",
"eleventy.js"
]
},
"scripts": {
"prepare": "npm install --prefix components/Styling",
"start": "npm run watch & live-server public --no-browser -q",
"watch": "nodemon --exec npm run dev",
"dev": "rm -fR .tmp; mkdir -p .tmp; cp -a components/Resources/. .tmp;NODE_ENV=development eleventy;NODE_ENV=development npm run --prefix components/Styling publish -- --output-filename ../../.tmp/js/main.js; rm -fR public; cp -R .tmp public",
"build": "rm -fR .public; cp -a components/Resources/. public;NODE_ENV=production eleventy;NODE_ENV=production npm run --prefix components/Styling publish -- --output-filename ../../public/js/main.js; gzip \"public/**/*{.js,.css,.html,.xml}\" --extension=gz --extension=br"
},
"author": "",
"license": "ISC"
}