-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "yoshiki-workspace",
"version": "1.0.0",
"main": "src/index.ts",
"author": "Zoe Roux <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn workspace yoshiki build",
"watch": "yarn workspace yoshiki watch",
"publish": "yarn build && yarn workspace yoshiki npm publish",
"next": "yarn workspace next-example dev",
"expo": "yarn workspace expo-example dev",
"lint": "eslint . --ext .ts,.tsx "
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"prettier": {
"useTabs": true,
"printWidth": 100,
"trailingComma": "all",
"plugins": [
"prettier-plugin-jsdoc"
],
"jsdocSingleLineComment": false,
"tsdoc": true
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.4.2",
"typescript": "4.8.4"
},
"packageManager": "[email protected]"
}