-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "subsquare",
"private": true,
"workspaces": [
"packages/*"
],
"repository": "[email protected]: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",
"lint-fix": "yarn workspace @subsquare/kintsugi-next lint --fix && yarn workspace @subsquare/next lint --fix && yarn workspace next-common lint --fix",
"test": "vitest"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "latest",
"eslint-plugin-react": "latest",
"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": "^2.1.1"
},
"lint-staged": {
"**/*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "[email protected]"
}