-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "haxeflixel.com",
"version": "0.2.0",
"description": "New DocPad project without using a skeleton",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/HaxeFlixel/haxeflixel.com.git"
},
"dependencies": {
"@11ty/eleventy-plugin-rss": "^2.0.2",
"bootstrap": "^5.3.3",
"highlight.js": "^11.9.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"sharp": "^0.33.2"
},
"scripts": {
"preinstall": "node scripts/install-flixel-docs-repo.cjs",
"start": "run-p start:*",
"start:11ty": "eleventy --serve",
"start:style": "sass --watch ./content/_scss/style.scss ./out/styles/style.css",
"build": "run-s \"build:11ty -- --pathprefix={1}\" build:style --",
"build:11ty": "eleventy",
"build:style": "sass ./content/_scss/style.scss ./out/styles/style.css",
"test": "run-s test:* -c",
"test:js": "standard --verbose | snazzy",
"test:liquid": "eleventy --dryrun",
"test:prettier": "prettier . --check",
"fix": "run-s fix:*",
"fix:js": "standard --fix",
"fix:prettier": "prettier . --write"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@liquify/prettier-config": "^1.2.1",
"@shopify/prettier-plugin-liquid": "^1.6.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.2.5",
"sass": "^1.81.0",
"shelljs": "^0.8.5",
"snazzy": "^9.0.0",
"standard": "*"
},
"standard": {
"ignore": [
"**/vendor/"
]
}
}