forked from callstack/linaria
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.75 KB
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
{
"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": "git@github.com: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": {
"git-raw-commits": "^2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.22.0",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^28.1.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^28.1.0",
"codecov": "^3.2.0",
"commitlint": "^8.3.5",
"cross-env": "^7.0.3",
"del-cli": "^1.1.0",
"dtslint": "^4.2.1",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^1.3.1",
"jest": "^28.1.0",
"prettier": "^2.7.1",
"react": "^16.14.0",
"syncpack": "^8.0.0",
"tsup": "^6.3.0",
"turbo": "^1.6.3",
"typescript": "^4.7.4"
},
"engines": {
"node": "^12.16.0 || >=13.7.0",
"pnpm": "^7.16.0"
}
}