-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 2.06 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
{
"scripts": {
"build-onboarding": "node build/generate-onboarding.js",
"build-strompris": "node build/generate-strompris.js",
"build-css": "npx tailwindcss --postcss postcss.config.js --config tailwind.config.js -i ./css/input.css -o ./site/assets/output.css",
"build": "npm run build-onboarding && npm run build-strompris && npm run build-css",
"debug": "npm-run-all --parallel server watch:*",
"server": "node server.js",
"watch:build": "nodemon",
"watch:browser-sync": "browser-sync start --proxy https://localhost:44326 --files 'index.html, site/assets/**/*.*'",
"start": "node server.js"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"fs-extra": "^11.1.0",
"handlebars": "^4.7.7",
"tailwindcss": "^3.2.7",
"tailwindcss-themer": "^3.0.1",
"expose-loader": "^4.1.0",
"http-server": "^14.1.1",
"express": "^4.18.2",
"selfsigned": "^2.1.1",
"nodemon": "^2.0.22",
"browser-sync": "^2.29.1",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"autoprefixer": "^10.4.14",
"cash-dom": "^8.1.4",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"lodash": "^4.17.21"
},
"name": "skandia.web.components",
"description": "Skandia Web Components is a project for generating components to be used on external providers, like Squarespace as pr. today.\r The following technologies are being utilized for making this happen:\r * NodeJs > 14\r * Handlebars.js (Template compilation)\r * Lodash (json settings merge)\r * tailwindcss (styling of components)\r * postcss (compiling of styling sources)\r * http-server w. expressjs (for running components locally) - debugging",
"version": "1.0.0",
"main": "postcss.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Skandia-Smarthus/Skandia.Web.Components.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Skandia-Smarthus/Skandia.Web.Components/issues"
},
"homepage": "https://github.com/Skandia-Smarthus/Skandia.Web.Components#readme"
}