-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
87 lines (87 loc) · 2.51 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
{
"name": "checklyhq.com",
"version": "1.0.0",
"description": "Checkly public website",
"repository": "checkly/checklyhq.com",
"main": "index.js",
"type": "module",
"scripts": {
"hugo": "gulp --gulpfile gulpfile.mjs hugo",
"build": "gulp --gulpfile gulpfile.mjs build",
"build-preview": "gulp --gulpfile gulpfile.mjs build-preview",
"deploy": "vercel --prod",
"checkly:test": "npx checkly test --record --reporter=github",
"checkly:deploy": "npx checkly deploy --force",
"lint": "eslint src",
"start": "gulp --gulpfile gulpfile.mjs server",
"prepare": "npx simple-git-hooks",
"test": "playwright test"
},
"license": "MIT",
"dependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-object-rest-spread": "7.0.0-beta.3",
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
"bootstrap": "4.0.0-alpha.6",
"browser-sync": "^2.29.3",
"css-loader": "^5.2.7",
"del": "^6.1.1",
"exports-loader": "^0.7.0",
"file-loader": "^6.2.0",
"gulp": "5.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-flatten": "^0.4.0",
"gulp-inline-css": "4.0.0",
"gulp-postcss": "^9.0.1",
"gulp-purgecss": "^5.0.0",
"gulp-rev-all": "^3.0.0",
"gulp-sass": "5.1.0",
"gulp-watch": "^5.0.1",
"html-loader": "^1.3.2",
"hugo-bin": "0.135.0",
"imports-loader": "^0.7.1",
"postcss-cssnext": "3.1.1",
"postcss-import": "^15.1.0",
"run-sequence": "^2.2.1",
"sass": "1.60.0",
"sass-loader": "^8.0.0",
"url-loader": "^0.6.2",
"webpack": "5.96.1",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "^7.26.0",
"@babel/register": "7.25.9",
"@playwright/test": "1.31.2",
"checkly": "4.6.2",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"gulp-cli": "2.3.0",
"lint-staged": "15.2.0",
"simple-git-hooks": "2.9.0",
"ts-node": "10.9.1",
"typescript": "5.1.6"
},
"hugo-bin": {
"buildTags": "extended"
},
"engines": {
"node": "20.x"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}