-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 990 Bytes
/
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
{
"private": true,
"version": "0.0.0",
"workspaces": [
"example",
"website",
"packages/*"
],
"scripts": {
"start": "yarn workspace example start",
"start:website": "yarn workspace website start",
"build:website": "yarn workspace website build",
"deploy:website": "yarn workspace website deploy",
"build": "./scripts/build.sh",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "^2.6.1",
"typescript": "^4.5.5",
"yalc": "^1.0.0-pre.53"
},
"dependencies": {
"@changesets/cli": "^2.23.0"
}
}