-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 790 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 790 Bytes
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
{
"private": true,
"workspaces": [
"packages/connect-miniprogram",
"packages/example-taro",
"packages/example-mina"
],
"scripts": {
"lint": "yarn workspace connect-miniprogram lint",
"test": "yarn workspace connect-miniprogram jest",
"build": "yarn workspace connect-miniprogram build",
"dev:taro": "yarn workspace example-taro dev:weapp",
"test-build-result": "yarn workspace example-mina test-build-result"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 80,
"proseWrap": "preserve",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"packageManager": "yarn@4.1.1"
}