-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.21 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
{
"name": "styled-query-builder",
"version": "1.0.20",
"description": "A semantic tool to help you build responsive interfaces with Styled Components",
"author": "Mathews Machado <mw.dev.io@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MathewsMachado/styled-query-builder"
},
"keywords": [
"react",
"styled-components",
"css",
"css-in-js",
"media-query",
"breakpoint",
"responsive",
"interface",
"ui"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types.d.ts",
"files": [
"dist/"
],
"scripts": {
"prebuild": "rm -rf dist/",
"build": "rollup -c",
"postbuild": "cp src/types.d.ts dist/",
"prepublishOnly": "npm run build",
"typecheck": "tsc",
"typo": "cspell --no-progress --no-must-find-files",
"lint": "eslint src --fix --ignore-path .gitignore",
"test": "jest --maxWorkers=50%",
"test:watch": "jest --watch --maxWorkers=25%",
"prepare": "husky install"
},
"peerDependencies": {
"styled-components": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"cspell": "^5.4.1",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-testing-library": "^4.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.4",
"lint-staged": ">=10",
"prettier": "2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.48.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"styled-components": "^5.3.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}