-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.41 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
{
"name": "create-juno",
"version": "0.4.1",
"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": {
"@dfinity/utils": "^2.11.0",
"@junobuild/cli-tools": "^0.1.6",
"ora": "^8.2.0",
"prompts": "^2.4.2",
"tar-stream": "^3.1.7"
},
"devDependencies": {
"@dfinity/internet-identity-playwright": "^0.0.5",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@junobuild/config": "^0.1.3",
"@playwright/test": "^1.51.1",
"@types/node": "^22.13.13",
"@types/prompts": "^2.4.9",
"@types/tar-stream": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"dotenv": "^16.4.7",
"esbuild": "^0.25.1",
"eslint": "^9.23.0",
"eslint-config-love": "^119.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.16.2",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.0.0",
"node-fetch": "^3.3.2",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.4.5"
},
"keywords": [
"blockchain-as-a-service",
"baas",
"dapps",
"dapps-development",
"internet computer",
"smart-contracts",
"web3",
"cli"
]
}