-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.54 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
{
"name": "cypherock",
"version": "independent",
"author": "Cypherock",
"license": "AGPL-3.0",
"private": true,
"scripts": {
"build-pkgs": "node ./build.js all",
"install-pkgs": "node ./run.js packages \"yarn\"",
"start": "node ./run.js cysync \"yarn start\"",
"make": "node ./run.js cysync \"yarn make\"",
"package": "node ./run.js cysync \"yarn package\"",
"lint": "node ./run.js cysync \"yarn lint\"",
"lint-pkgs": "node ./run.js packages \"yarn lint\"",
"lint:check": "node ./run.js cysync \"yarn lint:check\"",
"postinstall": "node ./run.js cysync \"yarn --network-timeout 500000\" && husky install",
"lint-staged": "node ./run.js cysync \"yarn lint-staged\"",
"pretty:local": "prettier --config cysync/.prettierrc --write '*.{js,json}'",
"pretty:cysync": "node ./run.js cysync \"yarn pretty\"",
"pretty:local:check": "prettier --config cysync/.prettierrc --check '*.{js,json}'",
"pretty:cysync:check": "node ./run.js cysync \"yarn pretty:check\"",
"pretty": "yarn pretty:local && yarn pretty:cysync",
"pretty:check": "yarn pretty:local:check && yarn pretty:cysync:check",
"update-notes": "node scripts/updateReleaseNotes.js && git add cysync/release_notes.json"
},
"dependencies": {
"@solana/web3.js": "^1.63.1",
"axios": "^0.26.1",
"eip-712": "^1.0.0",
"fs-extra": "^10.0.0",
"ts-proto": "^1.138.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"husky": "^7.0.4",
"prettier": "^2.5.1"
}
}