-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "icod2",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"fe",
"be",
"libs/*"
],
"scripts": {
":lint-fix": "biome check --fix",
":lint-fix-force:": "biome check --write --unsafe",
"dev-prepare": "yarn workspace @icod2/contracts build && yarn workspace @icod2/protocols build",
"dev-copy-env-file": "echo \"#GENERATED FROM .env files in root project\" > fe/.env.local && cat .env >> fe/.env.local && touch .env.local && cat .env.local >> fe/.env.local",
"dev": "yarn dev-copy-env-file && concurrently \"yarn workspace @icod2/fe dev\" \"dotenvx run -f .env.local -f .env -- yarn workspace @icod2/be start\"",
"prepare": "husky",
"commitlint": "commitlint --edit --last"
},
"devDependencies": {
"@biomejs/biome": "^2.2.3",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"concurrently": "^8.2.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.6"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --fix"
]
},
"resolutions": {
"@libp2p/interface": "^2.11.0"
},
"packageManager": "yarn@4.9.2",
"dependencies": {
"@dotenvx/dotenvx": "^1.49.0"
}
}