-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
31 lines (31 loc) · 1.04 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
{
"private": true,
"scripts": {
"test": "yarn workspace @identity.com/cryptid-program-tests build && anchor test",
"build": "anchor build && yarn workspace @identity.com/cryptid-cli build --force",
"lint": "eslint . --ext .ts"
},
"workspaces": [
"packages/client/idl",
"packages/client/middleware/checkPass",
"packages/client/middleware/checkDid",
"packages/client/middleware/timeDelay",
"packages/client/middleware/checkRecipient",
"packages/client/middleware/superuserCheckSigner",
"packages/client/core",
"packages/client/cryptid",
"packages/client/cli",
"packages/tests"
],
"devDependencies": {
"@project-serum/anchor-cli": "^0.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"ts-mocha": "^10.0.0",
"typescript": "^4.8.3"
}
}