-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 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
42
43
44
{
"name": "dripversity",
"version": "1.0.0",
"description": "Dripversity NFT collection monorepo",
"license": "MIT",
"private": true,
"workspaces": [
"frontend",
"api",
"contracts",
"subgraph"
],
"scripts": {
"frontend:serve": "yarn --cwd frontend serve",
"frontend:build": "yarn --cwd frontend build",
"contract:compile": "yarn --cwd contracts compile",
"ci:build": "yarn contract:compile && yarn frontend:build",
"changeset": "changeset",
"lint": "yarn workspaces run lint",
"format": "yarn workspaces run format",
"prepare": "husky install",
"commit": "cz"
},
"devDependencies": {
"@changesets/cli": "^2.23.1",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"vercel": "^27.1.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.+(js|jsx|ts|tsx)": [
"yarn lint"
]
}
}