forked from FlowFuse/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.92 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "flowfuse-website",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"license": "Apache-2.0",
"author": "Nick O'Leary",
"scripts": {
"start": "npm-run-all clean:dev build:js --parallel dev:*",
"test": "mocha",
"build:js": "terser -c -m -o _site/js/cc.min.js node_modules/vanilla-cookieconsent/dist/cookieconsent.umd.js src/js/cookieconsent-config.js",
"build": "cross-env NODE_ENV=production npm-run-all clean build:js --parallel prod:*",
"clean:dev": "cross-env npx del-cli '_site/!(img)' 'src/docs/**/*.md' 'src/blueprints/**/*' && cross-env npx mkdirp '_site/js'",
"clean": "cross-env npx del-cli '_site/!(img)' && cross-env mkdir -p '_site/js'",
"dev:docs": "node scripts/watch_docs.js",
"dev:blueprints": "node scripts/watch_blueprints.js",
"dev:netlify": "npx netlify dev -c \"cross-env npx @11ty/eleventy --serve --quiet --incremental\"",
"dev:postcss": "cross-env TAILWIND_MODE=watch npx postcss ./src/css/style.css -o ./_site/css/style.css --config ./postcss.config.js -w",
"docs": "node scripts/copy_docs.js",
"blueprints": "node scripts/copy_blueprints.js",
"old_dev:eleventy": "cross-env NODE_ENV=development ELEVENTY_ENV=development npx @11ty/eleventy --serve --quiet",
"prod:eleventy": "npx @11ty/eleventy",
"prod:postcss": "postcss ./src/css/style.css -o ./_site/css/style.css --config ./postcss.config.js"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.8",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@algolia/netlify-plugin-crawler": "^1.0.15",
"@flowforge/forge-ui-components": "^0.2.2",
"@kevingimbel/eleventy-plugin-mermaid": "^2.0.0",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"eleventy-plugin-code-clipboard": "^0.0.9",
"html-minifier": "^4.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-footnote": "^3.0.3",
"mocha": "^10.2.0",
"netlify-cli": "^17.15.6",
"netlify-plugin-cache": "^1.0.3",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"postcss-cli": "^9.0.1",
"postcss-import": "^14.0.2",
"postcss-minify": "^1.1.0",
"seedrandom": "^3.0.5",
"should": "^13.2.3",
"spacetime": "^7.4.7",
"tailwindcss": "^3.4.1",
"terser": "^5.9.0",
"vanilla-cookieconsent": "^3.0.0",
"xpath": "^0.0.32"
},
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.0",
"@quasibit/eleventy-plugin-schema": "^1.11.0",
"@xmldom/xmldom": "^0.8.10",
"codeowners": "^5.1.1",
"markdown-it-attrs": "^4.1.6",
"xml-js": "^1.6.11"
}
}