forked from callstack/linaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
{
"private": true,
"license": "MIT",
"repository": "[email protected]:callstack/linaria.git",
"bugs": {
"url": "https://github.com/callstack/linaria/issues"
},
"homepage": "https://github.com/callstack/linaria#readme",
"scripts": {
"add-contributor": "all-contributors add",
"bootstrap": "yarn && yarn website install",
"check:all": "yarn test:dts && yarn typecheck && yarn test && yarn lint",
"clean": "del 'packages/*/{coverage,esm,lib,types,tsconfig.tsbuildinfo}'",
"lint": "eslint --ext .js,.ts,.tsx .",
"prepare": "lerna-to-typescript-project-references --update && yarn lerna run prepare",
"release": "release-it",
"test": "yarn lerna run test",
"test:coverage": "yarn lerna run test -- -- --coverage",
"test:dts": "yarn lerna run test:dts",
"typecheck": "yarn lerna run typecheck",
"watch": "lerna run --parallel watch",
"website": "yarn --cwd website"
},
"devDependencies": {
"@babel/cli": ">=7",
"@babel/core": ">=7",
"@babel/plugin-proposal-class-properties": ">=7",
"@babel/plugin-syntax-jsx": ">=7",
"@babel/preset-env": ">=7",
"@babel/preset-react": ">=7",
"@babel/preset-typescript": ">=7",
"@callstack/eslint-config": "^10.2.0",
"@commitlint/config-conventional": "^8.3.4",
"@release-it/conventional-changelog": "^1.1.0",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"all-contributors-cli": "^6.1.1",
"babel-jest": "^27.0.5",
"codecov": "^3.2.0",
"commitlint": "^8.3.5",
"cross-env": "^7.0.3",
"del-cli": "^1.1.0",
"dtslint": "^4.0.4",
"eslint": "^7.6.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"lerna-to-typescript-project-references": "^0.0.6",
"prettier": "^2.0.5",
"react": ">=16",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"typescript": "^3.9.7"
},
"resolutions": {
"@typescript-eslint/experimental-utils": "^4.28.0",
"git-raw-commits": "^2.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn check:all"
}
},
"workspaces": [
"./packages/*",
"./website"
],
"dependencies": {
"git-raw-commits": "^2.0.3"
},
"name": "linaria"
}