-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.28 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.28 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
{
"name": "styled-container-query",
"version": "1.3.5",
"description": "Use Container Queries [Element Queries] with styled-components",
"author": "Freddy Ochner <freddy@ochner.it> (https://freddy.ochner.it)",
"repository": {
"type": "git",
"url": "git+https://github.com/FreddyFY/styled-container-query.git"
},
"homepage": "https://freddyfy.github.io/styled-container-query/",
"license": "MIT",
"keywords": [
"styled-components",
"container-queries",
"element-queries",
"react",
"css",
"css-in-js",
"responsive-component"
],
"bugs": {
"url": "https://github.com/FreddyFY/styled-container-query/issues"
},
"main": "dist/index.js",
"scripts": {
"transpile": "trash dist/ && babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"demo:build": "webpack --mode production --progress",
"demo:dev": "webpack-dev-server --mode development --hot",
"demo:deploy": "gh-pages -d examples/build",
"demo:publish": "npm run demo:build && npm run demo:deploy"
},
"dependencies": {
"classnames": "^2.2.6",
"hoist-non-react-statics": "^3.3.2",
"resize-observer": "^1.0.0",
"shorthash": "0.0.2"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@probablyup/react-live": "^1.11.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"prismjs": "^1.20.0",
"re-resizable": "^6.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^4.4.1",
"trash-cli": "^3.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120
}
}