-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.17 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.17 KB
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
{
"name": "webspresso",
"version": "0.0.59",
"description": "Minimal, production-ready SSR framework for Node.js with file-based routing, Nunjucks templating, built-in i18n, and CLI tooling",
"main": "index.js",
"bin": {
"webspresso": "./bin/webspresso.js"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"release": "release-it"
},
"keywords": [
"ssr",
"nunjucks",
"express",
"file-based-routing",
"i18n",
"framework",
"orm",
"knex"
],
"author": "cond",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/litepacks/webspresso.git"
},
"files": [
"index.js",
"bin/",
"src/",
"utils/",
"core/",
"plugins/",
"templates/"
],
"dependencies": {
"bcrypt": "^5.1.1",
"commander": "^11.1.0",
"connect-timeout": "^1.9.1",
"cookie-parser": "^1.4.7",
"dayjs": "^1.11.19",
"express": "^4.18.2",
"express-session": "^1.18.0",
"helmet": "^7.2.0",
"inquirer": "^8.2.6",
"knex": "^3.1.0",
"nunjucks": "^3.2.4",
"sharp": "^0.33.5",
"zod": "^3.23.0"
},
"peerDependencies": {
"@faker-js/faker": ">=8.0.0",
"better-sqlite3": ">=9.0.0",
"dotenv": ">=16.0.0",
"mysql2": ">=3.0.0",
"pg": ">=8.0.0"
},
"peerDependenciesMeta": {
"dotenv": {
"optional": true
},
"pg": {
"optional": true
},
"mysql2": {
"optional": true
},
"better-sqlite3": {
"optional": true
},
"@faker-js/faker": {
"optional": true
}
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@playwright/test": "^1.48.0",
"@vitest/coverage-v8": "^3.0.0",
"better-sqlite3": "^11.10.0",
"chokidar": "^3.5.3",
"dotenv": "^16.3.1",
"release-it": "^19.0.0",
"supertest": "^6.3.4",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"tar": "^7.5.11",
"undici": "^6.24.0"
}
}