-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 1.06 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
{
"private": true,
"version": "1.0.0",
"scripts": {
"test": "turbo run test --filter=./packages/*",
"build": "turbo run build --filter=./packages/*",
"lint": "turbo run lint",
"release:version":"lerna version --conventional-commits --no-changelog --no-push --yes",
"release:publish": "lerna publish from-package",
"example:counter": "SKIP_PREFLIGHT_CHECK=true turbo run start --filter counter-example",
"example:local-storage": "SKIP_PREFLIGHT_CHECK=true turbo run start --filter local-storage-example",
"example:vue-counter": "turbo run start --filter vue-counter-example"
},
"repository": "https://github.com/ruanyl/reapex.git",
"author": "Yulong Ruan <[email protected]>",
"license": "MIT",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"devDependencies": {
"prettier": "^2.7.1",
"import-sort-cli": "6.0.0",
"import-sort-parser-typescript": "6.0.0",
"import-sort-style-as": "1.3.1",
"lerna": "^5.0.0",
"turbo": "latest"
}
}