-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.09 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": "caple-design-system",
"author": "Cobalt. Inc.",
"private": true,
"engines": {
"node": "12.x"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"scripts": {
"start": "lerna run start --parallel",
"build": "lerna run build --stream --prefix --npm-client yarn",
"clean": "lerna run clean && lerna clean --yes && rimraf node_modules",
"format": "prettier --write '**/*.{js,md,scss,ts,tsx}' '!**/{dist,storybook}/**'",
"format:diff": "prettier --list-different '**/*.{js,md,scss,ts,tsx}' '!**/{dist,storybook}/**'",
"lint": "tslint packages",
"lint:docs": "alex 'packages/**/*.md' -q"
},
"resolutions": {
"react": "~16.12.0",
"react-dom": "~16.12.0",
"react-is": "~16.12.0",
"react-test-renderer": "~16.12.0"
},
"devDependencies": {
"alex": "^8.0.0",
"lerna": "^3.20.2",
"prettier": "1.19.1",
"tslint": "6.0.0",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.2.0"
},
"contributors": [
{
"name": "Lee Sun-Hyoup",
"email": "[email protected]"
}
]
}