This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.11 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
{
"name": "pacific",
"version": "0.1.0",
"description": "The web platform for PRC4ECD",
"main": "src/index.html",
"scripts": {
"clean": "rimraf ./build ./.tmp",
"fetch:dato": "npx dato dump",
"fetch:albatross": "node ./fetch_albatross.js",
"prestart": "run-s clean build:sass",
"start": "run-p watch:*",
"setup": "run-s clean fetch:dato fetch:albatross",
"build": "run-s setup lint:* build:sass build:compress build:eleventy",
"build:eleventy": "npx @11ty/eleventy",
"build:sass": "sass --load-path=node_modules/bourbon/core source/assets/stylesheets/:.tmp/",
"build:compress": "npx postcss ./.tmp/main.css -r",
"lint:js": "npx eslint source/components/**",
"lint:sass": "npx stylelint source/assets/stylesheets/**",
"watch:eleventy": "npm run build:eleventy -- --serve",
"watch:lint": "onchange source/ -- run-s lint:*",
"watch:sass": "npm run build:sass -- --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hostcreative/pacific.git"
},
"author": "Høst Creative Inc.",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/hostcreative/pacific/issues"
},
"homepage": "https://github.com/hostcreative/pacific#readme",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@mightyplow/eleventy-plugin-cache-buster": "^1.1.3",
"@sherby/eleventy-plugin-files-minifier": "^1.1.1",
"acorn": "^8.7.0",
"autoprefixer": "^10.4.4",
"bourbon": "^7.2.0",
"cssnano": "^4.1.11",
"date-fns": "^2.28.0",
"datocms-client": "^3.5.19",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"js-yaml": "^4.1.0",
"markdown-it": "^12.3.2",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.4.12",
"postcss-cli": "^8.3.1",
"rimraf": "^3.0.2",
"sass": "^1.49.11",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-order": "^4.1.0",
"svgo": "^1.3.2",
"svgstore-cli": "^2.0.1"
},
"dependencies": {}
}