-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 1.96 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "root",
"private": true,
"keywords": [
"styles",
"filbert",
"react",
"css",
"css-in-js"
],
"resolutions": {
"**/react": "16.12.0",
"**/react-dom": "16.12.0",
"**/@filbert-js/core": "^0.0.14",
"**/@filbert-js/browser-stylesheet": "^0.0.10",
"**/@filbert-js/style-sheet-context": "^0.0.10",
"**/@filbert-js/css-ast":"^0.0.8",
"**/@filbert-js/css-parser":"^0.0.9",
"**/@filbert-js/types":"^0.0.6"
},
"scripts": {
"develop": "lerna run --stream --parallel --ignore @filbert-js/examples-* --ignore benchmarks-* develop",
"postinstall": "yarn build-packages",
"build": "lerna run build",
"build-packages": "lerna run --ignore @filbert-js/website --ignore benchmarks-* --ignore @filbert-js/examples-* build",
"develop-packages": "lerna run --parallel --stream --ignore @filbert-js/website --ignore benchmarks-* --ignore @filbert-js/examples-* develop",
"benchmarks": "yarn build-packages && yarn benchmarks-size && yarn benchmarks-performance",
"benchmarks-size": "lerna run capture-stats && lerna run print-delta --stream",
"benchmarks-performance": "lerna run performance --stream",
"release": "changeset publish"
},
"devDependencies": {
"husky": "^4.2.5",
"lerna": "^3.16.4",
"prettier": "2.0.5"
},
"eslintConfig": {
"extends": "react-app"
},
"workspaces": {
"packages": [
"packages/*",
"website",
"examples/*",
"benchmarks/size/*",
"benchmarks/performance"
],
"nohoist": [
"**/dtslint"
]
},
"lint-staged": {
"*.{js,ts,tsx,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@changesets/cli": "^2.9.2",
"lint-staged": "^10.2.11"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/filbert-js"
}
}