-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "tailwind-js",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"scripts": {
"build": "pika build",
"format": "prettier --write \"./**/*.{ts,tsx,js,json,md,mdx}\"",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"husky": ">=1",
"jest": "^24.9.0",
"lerna": "^3.20.2",
"lint-staged": ">=8",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"resolutions": {
"csstype": "2.6.11"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"**/__tests__/**/*",
"**/__mocks__/**/*",
"**/stories/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,md,mdx}": [
"prettier --write",
"git add"
]
}
}