-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.99 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
{
"name": "create-juno",
"version": "0.9.7",
"description": "A CLI for creating new Juno projects",
"author": "David Dal Busco (https://daviddalbusco.com)",
"license": "MIT",
"type": "module",
"bin": "dist/index.js",
"main": "dist/index.js",
"files": [
"dist/index.js",
"README.md",
"LICENSE",
"boilerplate"
],
"scripts": {
"format": "prettier . --write",
"format:check": "prettier --check .",
"build": "tsc --noEmit && node scripts/rmdir.mjs && node scripts/esbuild.mjs",
"dev": "node scripts/rmdir.mjs && NODE_ENV=development node scripts/esbuild.mjs",
"lint": "eslint --max-warnings 0 \"src/**/*\"",
"update:juno": "./scripts/update-juno",
"e2e": "NODE_ENV=development playwright test",
"e2e:snapshots": "NODE_ENV=development playwright test --update-snapshots --reporter=list",
"e2e:ci": "playwright test --reporter=html",
"e2e:ci:snapshots": "playwright test --update-snapshots --reporter=html",
"copy:boilerplate": "./scripts/cli-to-boilerplate.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junobuild/create-juno.git"
},
"bugs": {
"url": "https://github.com/junobuild/create-juno"
},
"homepage": "https://juno.build",
"engines": {
"node": ">=20"
},
"dependencies": {
"@junobuild/cli-tools": "^0.14.0",
"@junobuild/utils": "^1.0.3",
"ora": "^9.3.0",
"prompts": "^2.4.2",
"tar-stream": "^3.1.8"
},
"devDependencies": {
"@dfinity/eslint-config-oisy-wallet": "^0.3.0",
"@junobuild/config": "^3.0.0",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"@types/prompts": "^2.4.9",
"@types/tar-stream": "^3.1.4",
"dotenv": "^17.4.2",
"esbuild": "^0.27.4",
"prettier": "^3.8.2",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3"
},
"keywords": [
"blockchain-as-a-service",
"baas",
"dapps",
"dapps-development",
"internet computer",
"smart-contracts",
"web3",
"cli"
]
}