-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.04 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
{
"name": "rafaj.dev",
"scripts": {
"prestart": "run-s clean",
"start": "run-p develop:*",
"prebuild": "run-p clean",
"build": "run-s build:*",
"dev": "npm run start",
"build:generate": "NODE_ENV=production run-s 11ty:build postcss:build:critical postcss:build:async",
"develop:generate": "run-p 11ty:watch postcss:watch:critical postcss:watch:async cheatsheet",
"clean": "run-p clean:*",
"clean:site": "rm -rf _site",
"11ty:build": "eleventy",
"11ty:watch": "ELEVENTY_ENV=development eleventy --watch --serve",
"postcss:build:critical": "postcss src/_css/critical.css -o _site/_css/critical.css",
"postcss:build:async": "postcss src/_css/index.css -o _site/_css/index.css",
"postcss:watch:critical": "postcss src/_css/critical.css -o _site/_css/critical.css --watch",
"postcss:watch:async": "postcss src/_css/index.css -o _site/_css/index.css --watch",
"prettier:fix": "prettier --write '**/*.js' ",
"cheatsheet": "node util/generate-cheatsheet.js",
"upgrade": "run-s upgrade:*",
"upgrade:check": "npm-check-updates -u",
"upgrade:install": "npm install",
"upgrade:git-unstage-all": "git restore --staged .",
"upgrade:git-stage-changes": "git add package.json package-lock.json",
"upgrade:git-auto-commit": "git commit -m 'Upgrade npm packages'; true"
},
"dependencies": {
"dotenv": "^16.0.3"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"autoprefixer": "^10.4.14",
"fast-glob": "^3.2.12",
"js-beautify": "^1.14.7",
"npm-check-updates": "^16.10.7",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.3",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-easy-import": "^4.0.0",
"prettier": "^2.8.7",
"tailwindcss": "^3.3.1"
},
"author": "[email protected]",
"license": "GPL3",
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"printWidth": 80
},
"browserslist": [
"last 1 version",
"> 1%"
]
}