-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.67 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.67 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
{
"name": "@junobuild/cli",
"version": "0.14.3",
"description": "The Juno command-line interface",
"author": "David Dal Busco (https://daviddalbusco.com)",
"license": "MIT",
"type": "module",
"bin": {
"juno": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist/index.js",
"README.md",
"LICENSE",
"templates"
],
"scripts": {
"format": "prettier . --write",
"format:check": "prettier --check .",
"build": "tsc --noEmit && node ./scripts/rmdir.mjs && node ./scripts/esbuild.mjs",
"lint": "eslint --max-warnings 0 \"src/**/*\"",
"prepublishOnly": "./scripts/prepublish.sh",
"e2e": "NODE_ENV=development playwright test",
"e2e:ci": "playwright test --reporter=html",
"e2e:snapshots": "playwright test --update-snapshots --reporter=list",
"e2e:snapshots:local": "NODE_ENV=development playwright test --update-snapshots --reporter=list",
"e2e:report": "playwright show-report",
"e2e:playwright:install": "playwright install chromium --with-deps"
},
"dependencies": {
"@dfinity/utils": "^4.1.0",
"@icp-sdk/canisters": "^3.3.0",
"@icp-sdk/core": "^5.0.0",
"@junobuild/admin": "^4.2.1",
"@junobuild/cdn": "^2.3.1",
"@junobuild/cli-tools": "^0.12.4",
"@junobuild/config": "^2.15.0",
"@junobuild/config-loader": "^0.4.9",
"@junobuild/core": "^5.2.2",
"@junobuild/functions-tools": "^0.5.3",
"@junobuild/ic-client": "^8.0.2",
"@junobuild/schema": "^1.1.1",
"@junobuild/storage": "^2.3.1",
"@junobuild/utils": "^0.3.1",
"chokidar": "^4.0.3",
"conf": "^14.0.0",
"open": "^11.0.0",
"ora": "^9.0.0",
"portfinder": "^1.0.38",
"prompts": "^2.4.2",
"semver": "^7.7.3",
"terminal-link": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@junobuild/emulator-playwright": "^0.0.5",
"@junobuild/functions": "^0.7.2",
"@playwright/test": "^1.58.1",
"@types/node": "24.10.9",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.1",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-love": "^149.0.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.2.0",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junobuild/cli.git"
},
"bugs": {
"url": "https://github.com/junobuild/cli"
},
"keywords": [
"serverless",
"developer-tools",
"cloud-computing",
"deployment",
"infrastructure",
"automation",
"cli",
"devops"
],
"homepage": "https://juno.build",
"engines": {
"node": ">=20"
}
}