-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.32 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.32 KB
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
{
"name": "lookbook-site",
"version": "1.0.0",
"description": "The styleguide of Lookback",
"scripts": {
"clean": "rm -rf build",
"build": "concurrently npm:build:*",
"build:css": "concurrently npm:css:*",
"css:default": "./build-css.sh",
"css:partici": "LOOKBOOK_MODE=participate ./build-css.sh",
"build:site": "eleventy --pathprefix=$ELEVENTY_PATH_PREFIX",
"start": "concurrently npm:watch:*",
"watch:css:default": "./build-css.sh -w",
"watch:css:partici": "LOOKBOOK_MODE=participate ./build-css.sh -w",
"watch:site": "eleventy --serve",
"copy-vars": "cp node_modules/@lookback/lookbook/dist/vars src/_data/vars",
"prebuild": "npm run clean && npm run copy-vars",
"prestart": "npm run clean && npm run copy-vars"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lookback/lookbook-website.git"
},
"author": "Johan Brook <johan@lookback.io>",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://lookback.github.io/lookbook-website",
"devDependencies": {
"concurrently": "^9.2.1",
"postcss-cli": "^11.0.1",
"prettier": "=2.0.5"
},
"dependencies": {
"@11ty/eleventy": "^0.7.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^2",
"@lookback/lookbook": "^7.1.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.10"
}
}