-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "haxeflixel.com",
"version": "0.2.0",
"description": "New DocPad project without using a skeleton",
"repository": {
"type": "git",
"url": "https://github.com/HaxeFlixel/haxeflixel.com.git"
},
"dependencies": {
"bootstrap": "^5.3.3",
"highlight.js": "^11.9.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.1.0",
"sharp": "^0.33.2"
},
"scripts": {
"preinstall": "node scripts/install-flixel-docs-repo.js",
"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": "^2.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@liquify/prettier-config": "^1.2.1",
"@shopify/prettier-plugin-liquid": "^1.4.4",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"shelljs": "^0.8.5",
"snazzy": "^9.0.0",
"standard": "*"
},
"standard": {
"ignore": [
"**/vendor/"
]
}
}