-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.6 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
90
91
92
93
{
"name": "medi-q-project",
"description": "Type-safe media queries.",
"private": true,
"keywords": [
"typescript",
"react",
"media-query",
"responsive",
"breakpoint"
],
"scripts": {
"postinstall": "preconstruct dev",
"prepare": "simple-git-hooks",
"build:watch": "preconstruct watch",
"build": "preconstruct build",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:dist": "yarn build && jest -c jest.dist.js --no-cache --ci --runInBand",
"test:coverage": "jest --coverage --no-cache --ci --runInBand",
"changeset": "changeset",
"version-apply": "changeset version",
"release": "yarn build && changeset publish"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint . --fix",
"git add"
]
},
"simple-git-hooks": {
"post-commit": "git update-index --again",
"pre-commit": "yarn lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Karibash/medi-q.git"
},
"author": "Karibash",
"license": "MIT",
"bugs": {
"url": "https://github.com/Karibash/medi-q/issues"
},
"homepage": "https://github.com/Karibash/medi-q",
"workspaces": [
"examples/*",
"packages/*"
],
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.18.1",
"@emotion/jest": "^11.6.0",
"@preconstruct/cli": "^2.1.5",
"@swc/core": "^1.2.113",
"@swc/jest": "^0.2.10",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.3.1",
"jest-styled-components": "^7.0.8",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^12.1.2",
"simple-git-hooks": "^2.7.0"
},
"preconstruct": {
"packages": [
"packages/*"
],
"globals": {
"react": "React",
"styled-components": "styled"
}
}
}