-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.82 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
{
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/minimatch": "^6.0.0",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.2.5",
"turbo": "^2.5.0",
"typescript": "^5.8.3"
},
"name": "factory",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"turbo-darwin-64": "^2.5.0"
},
"scripts": {
"dev-pocket-ic-core": "cd typescript/pocket-ic-core && pnpm dev-start",
"dev-icr-cli": "cd typescript/icr-cli && pnpm dev-start",
"dev-icr-cli-build-all": "cd typescript/icr-cli && pnpm dev-start-build-all",
"install-all": "pnpm turbo run turbo-install",
"submodules:init": "git submodule init && git submodule update --init --depth 1 --jobs 4 picjs innerDfxProjects/candidUi ic",
"submodules:update": "git submodule update --remote --jobs 4 picjs innerDfxProjects/candidUi && git submodule update --init --checkout ic",
"sns:build": "bash scripts/sns-build.sh",
"sns:build:subset": "SNS_SET=sns_governance,sns_root,sns_ledger bash scripts/sns-build.sh",
"sns:build:debug": "PROFILE=debug bash scripts/sns-build.sh",
"prepare": "husky install",
"lint": "pnpm turbo run lint",
"lint:fix": "pnpm turbo run lint:fix",
"format": "pnpm turbo run format",
"lint-staged": "lint-staged"
},
"lint-staged": {
"typescript/**/*.{ts,tsx}": [
"pnpm --filter=* format",
"pnpm --filter=* lint:fix"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"engines": {
"node": ">=22.9.0",
"pnpm": "10.15.0"
},
"packageManager": "pnpm@10.15.0"
}