-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.35 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
{
"type": "module",
"name": "knochi",
"workspaces": [
"./project/*"
],
"scripts": {
"dev": "npm-run-all --parallel *:dev",
"build": "npm-run-all *:build",
"preview": "npm run preview --prefix ./project/app",
"format": "prettier -w ./",
"check": "npm-run-all *:check",
"lint": "eslint ./",
"test": "npm run check && npm run lint",
"___": "___",
"contracts:dev": "npm run dev --prefix ./project/contracts",
"contracts:build": "npm run build --prefix ./project/contracts",
"app:dev": "npm run dev --prefix ./project/app",
"app:build": "npm run build --prefix ./project/app",
"app:check": "npm run check --prefix ./project/app"
},
"devDependencies": {
"@openzeppelin/contracts": "^5.0.2",
"@total-typescript/ts-reset": "^0.5.1",
"console-log-colors": "^0.4.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-project-structure": "^3.7.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^4.1.0",
"solc-typed-ast": "^18.1.0",
"tsx": "^4.15.7",
"typescript-eslint": "^8.10.0",
"vite": "^5.0.11",
"vite-plugin-singlefile": "^2.0.2"
},
"dependencies": {
"@nomadshiba/typed-contracts": "npm:@jsr/nomadshiba__typed-contracts@^0.2.13",
"@purifyjs/core": "npm:@jsr/purifyjs__core@^0.0.331",
"ethers": "^6.9.1",
"extra-bigint": "^1.1.18",
"jazzicon-ts": "^4.0.0",
"zod": "^3.22.4"
}
}