-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.52 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.52 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": "subsquare",
"private": true,
"workspaces": [
"packages/*"
],
"repository": "git@github.com:opensquare-network/subsquare.git",
"author": "OpenSquare <https://www.opensquare.network/>",
"scripts": {
"prepare": "husky install",
"scan": "yarn workspace @subsquare/scan scan",
"lint": "yarn workspace @subsquare/kintsugi-next lint && yarn workspace @subsquare/next lint && yarn workspace next-common lint && yarn workspace @subsquare/collectives-next lint",
"lint-fix": "yarn workspace @subsquare/kintsugi-next lint --fix && yarn workspace @subsquare/next lint --fix && yarn workspace next-common lint --fix && yarn workspace @subsquare/collectives-next lint --fix",
"test": "vitest",
"next": "yarn workspace @subsquare/next dev",
"collectives": "yarn workspace @subsquare/collectives-next dev",
"kintsugi": "yarn workspace @subsquare/kintsugi-next dev"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^9.0.0",
"eslint-config-next": "^16.1.6",
"eslint-plugin-react": "^7.37.0",
"globals": "^16.4.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.3.2",
"vitest": "^4.0.18"
},
"lint-staged": {
"**/*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "yarn@4.12.0"
}