-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
116 lines (116 loc) · 3.56 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "blog",
"version": "4.25.3",
"description": "The source code for philipwalton.com",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/philipwalton/blog.git"
},
"author": {
"name": "Philip Walton",
"url": "https://philipwalton.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/philipwalton/blog/issues"
},
"scripts": {
"clean": "node ./tasks/clean.js",
"build": "node ./tasks/build.js",
"format": "prettier \"**/*.{cjs,js,json}\" --write --ignore-path .gitignore",
"lint": "eslint \"**/*.js\" --fix --ignore-path .gitignore",
"release:major": "npm version major -m 'Release v%s'",
"release:minor": "npm version minor -m 'Release v%s'",
"release:patch": "npm version patch -m 'Release v%s'",
"deploy": "git push --follow-tags && wrangler pages deploy",
"start": "run-p build server watch",
"watch": "node ./tasks/watch.js",
"ready": "wait-on http://localhost:3000 && wait-on http://localhost:3001",
"server": "run-p server:*",
"server:log": "node tasks/server.js",
"server:worker": "wrangler pages dev --port=3000 --show-interactive-dev-session=false",
"pretest": "run-s clean build",
"test": "run-p -r server test:suite",
"test:suite": "run-s ready vitest wdio",
"posttest": "pkill -f 'npm run server'",
"vitest": "vitest run",
"wdio": "wdio run wdio.conf.cjs",
"version": "NODE_ENV=production run-s clean build",
"postversion": "npm run deploy",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"**/*.js": "eslint --fix --ignore-path .gitignore",
"**/*.{cjs,js,json}": "prettier --write --ignore-path .gitignore"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"quoteProps": "preserve",
"singleQuote": true
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@wdio/cli": "^9.7.1",
"@wdio/local-runner": "^9.7.1",
"@wdio/mocha-framework": "^9.6.4",
"@wdio/spec-reporter": "^9.6.3",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"chromedriver": "^132.0.1",
"common-tags": "^1.8.2",
"cssnano": "7.0.6",
"eslint": "^8.57.0",
"fs-extra": "^11.3.0",
"globby": "^14.0.2",
"gzip-size": "^7.0.0",
"he": "~1.2.0",
"highlight.js": "^11.11.1",
"html-minifier": "^4.0.0",
"husky": "^9.1.7",
"image-size": "^1.2.0",
"jsesc": "^3.1.0",
"lint-staged": "^15.4.2",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"md5": "^2.3.0",
"mocha": "^11.1.0",
"moment-timezone": "^0.5.46",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.4",
"path": "^0.12.7",
"postcss": "^8.5.1",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.3",
"postcss-url": "^10.1.3",
"prettier": "^3.4.2",
"rev-hash": "^4.1.0",
"rev-path": "^3.0.0",
"rollup": "^4.32.0",
"sharp": "^0.33.5",
"vitest": "^3.0.4",
"wait-on": "^8.0.2",
"wdio-chromedriver-service": "^8.1.1",
"web-vitals": "^4.2.4",
"webdriverio": "^9.7.1",
"workbox-background-sync": "^7.3.0",
"workbox-broadcast-update": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-expiration": "^7.3.0",
"workbox-google-analytics": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-streams": "^7.3.0",
"workbox-window": "^7.3.0",
"wrangler": "^3.105.1"
}
}