-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.71 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
{
"name": "staticit",
"version": "1.3.2",
"description": "Minimal, zero-configuration and fast solution for static site generation in any front-end framework.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"staticit": "dist/index.js"
},
"engines": {
"node": ">=18.20.4"
},
"scripts": {
"dev": "tsc-watch --onSuccess \"node .\"",
"test:e2e": "jest",
"prebuild": "rimraf dist/",
"build": "rollup -c",
"lint:fix": "eslint ./src --ext .js,.ts --quiet --fix",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,ts}\" ",
"lint": "pnpm lint:format && pnpm lint:fix",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/TheEngineerhub/staticit.git"
},
"keywords": [
"react",
"react-ssg",
"react-prerender",
"vue",
"vue-ssg",
"vue-prerender",
"react static site generator",
"vue static site generator",
"static site generator",
"static site generation",
"prerender",
"ssg"
],
"author": "Alcadramin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheEngineerhub/staticit/issues"
},
"homepage": "https://github.com/TheEngineerhub/staticit#readme",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/engineerhub"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rollup/plugin-json": "^6.1.0",
"@types/express": "^5.0.0",
"@types/finalhandler": "^1.2.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/serve-static": "^1.15.7",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"finalhandler": "^1.3.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-puppeteer": "^10.1.1",
"pre-commit": "^1.2.2",
"rimraf": "^6.0.1",
"rollup": "^4.22.5",
"rollup-plugin-esbuild": "^6.1.1",
"serve-static": "^1.16.2",
"shelljs": "^0.8.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.2"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"express": "^4.21.0",
"prettier": "^3.3.3",
"puppeteer": "^23.4.1",
"readline": "^1.3.0",
"zolt": "^1.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}