-
Notifications
You must be signed in to change notification settings - Fork 417
/
package.json
89 lines (89 loc) · 2.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "umbrella",
"version": "3.0.0-beta.19",
"private": true,
"homepage": "https://github.com/callstack/linaria#readme",
"bugs": "https://github.com/callstack/linaria/issues",
"repository": "[email protected]:callstack/linaria.git",
"license": "MIT",
"workspaces": [
"./packages/*",
"./website"
],
"scripts": {
"add-contributor": "all-contributors add",
"bootstrap": "pnpm install",
"check:all": "turbo run check:all --output-logs=new-only && pnpm lint && pnpm sp:check",
"clean": "del 'packages/*/{coverage,dist,esm,lib,types,tsconfig.tsbuildinfo}'",
"lint": "eslint --ext .js,.ts,.tsx .",
"prepare": "turbo run build --output-logs=new-only",
"release": "pnpm run prepare && pnpm changeset publish",
"sp:check": "syncpack",
"sp:fix": "syncpack format && syncpack fix-mismatches",
"sp:format": "syncpack format",
"sp:list": "syncpack list-mismatches",
"test": "turbo run test",
"test:coverage": "turbo run test -- -- --coverage",
"test:dts": "turbo run test:dts",
"typecheck": "turbo run typecheck",
"website": "pnpm --filter=linaria-website"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pnpm check:all"
}
},
"resolutions": {
"@typescript-eslint/experimental-utils": "^4.28.0",
"git-raw-commits": "^2.0.3"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-explicit-resource-management": "^7.23.3",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@changesets/cli": "^2.22.0",
"@commitlint/config-conventional": "^8.3.4",
"@definitelytyped/dtslint": "^0.0.176",
"@types/jest": "^28.1.0",
"@types/node": "^17.0.39",
"@types/resolve": "^1.20.6",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^29.6.2",
"codecov": "^3.2.0",
"commitlint": "^8.3.5",
"cross-env": "^7.0.3",
"del-cli": "^1.1.0",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"git-raw-commits": "^2.0.3",
"husky": "^1.3.1",
"jest": "^29.6.2",
"prettier": "^3.0.3",
"react": "^16.14.0",
"syncpack": "^11.2.1",
"tsup": "^7.2.0",
"turbo": "^1.10.13",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0",
"pnpm": "^8.0.0"
},
"packageManager": "[email protected]+sha256.50783dd0fa303852de2dd1557cd4b9f07cb5b018154a6e76d0f40635d6cee019"
}