-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
{
"name": "@fleek-platform/next",
"version": "2.2.1",
"description": "Deploy your server-side Next.js application on Fleek",
"bin": {
"fleek-next": "./dist/index.js"
},
"main": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"module": "./dist/cli.js",
"repository": "https://github.com/fleek-platform/fleek-next",
"homepage": "https://github.com/fleek-platform/fleek-next/#readme",
"license": "MIT",
"type": "module",
"keywords": [
"nextjs",
"next",
"fleek",
"server-side",
"edge",
"serverless"
],
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.{js,ts}'",
"format": "prettier . --write",
"format:check": "prettier . --check",
"prepare": "husky"
},
"lint-staged": {
"*": [
"prettier . --check",
"eslint"
]
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@fleek-platform/functions-esbuild-config": "0.0.19",
"@fleek-platform/next-on-fleek": "1.15.5",
"ansi-escapes": "^7.0.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"esbuild": "^0.24.0",
"ora": "^8.0.1",
"prompts": "^2.4.2",
"semver": "^7.6.2",
"update-notifier": "^7.0.0",
"update-notifier-cjs": "^5.1.6"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.11",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"eslint": "^9.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
}
}