-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
31 lines (31 loc) · 1.1 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
{
"name": "artblocks-oss",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-document-nodes": "^4.0.7",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@graphql-codegen/typescript-urql": "^4.0.0",
"dotenv": "^16.4.5",
"husky": "^9.0.11",
"prettier": "^3.3.2"
},
"scripts": {
"build": "yarn workspace @artblocks/contracts run build && yarn workspace @artblocks/sdk run build",
"codegen:project": "graphql-codegen dotenv_config_path=./.env --require dotenv/config --config graphql.config.ts --project",
"prepare": "husky install",
"pre-commit": "yarn workspace @artblocks/contracts run pre-commit && yarn workspace @artblocks/sdk run pre-commit",
"pre-push": "yarn workspace @artblocks/sdk run pre-push",
"release": "yarn build && yarn changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.27.5"
},
"packageManager": "[email protected]"
}