-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "awesomesolana",
"private": true,
"workspaces": [
"app",
"common",
"tw",
"ui",
"hooks"
],
"scripts": {
"lint:strict": "yarn workspaces foreach run lint:strict",
"typecheck": "yarn workspaces foreach run typecheck",
"format": "yarn workspaces foreach run format",
"format:check": "yarn workspaces foreach run format:check",
"test": "yarn workspaces foreach run test",
"prepare": "husky install",
"refreshSources": "ts-node scripts/refreshSources",
"postinstall": "yarn husky install",
"dev": "yarn workspace @awesomesolana/app run dev",
"build": "yarn workspace @awesomesolana/common run build && yarn workspace @awesomesolana/tw run build && yarn workspace @awesomesolana/app run build",
"start": "yarn workspace @awesomesolana/app run start"
},
"lint-staged": {
"{app,common}": [
"yarn lint:strict --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@supabase/supabase-js": "^1.30.7",
"@types/lodash.times": "^4.3.6",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"lodash.times": "^4.3.2",
"node-fetch": "2",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.6.2"
},
"packageManager": "[email protected]"
}