-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "fbi-config-workspace",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"dev": "lerna run dev --scope @fbi-js/*",
"build": "lerna run build --scope @fbi-js/*",
"format": "lerna run format --scope @fbi-js/*",
"test": "jest",
"clean": "lerna run --parallel clean",
"changeset": "changeset",
"bump": "changeset version",
"release": "yarn build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.14.1",
"@types/jest": "^26.0.20",
"@types/stylelint": "^9.10.1",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"jest-serializer-path": "^0.1.15",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.2",
"typescript": "4.1.5"
},
"license": "MIT",
"eslintConfig": {
"extends": [
"./packages/eslint-config-typescript"
]
},
"prettier": {
"semi": false,
"tabWidth": 2,
"endOfLine": "lf",
"printWidth": 80,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "always",
"vueIndentScriptAndStyle": true
}
}