-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.1 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-awesome-styled-grid",
"version": "4.0.1",
"description": "A responsive grid system layout for React using styled-components",
"main": "dist/react-awesome-styled-grid.cjs.js",
"module": "dist/react-awesome-styled-grid.es.js",
"browser": "dist/react-awesome-styled-grid.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn tsc && rollup -c",
"clean": "rm -rf ./dist && rm -rf types",
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build-doc": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"tsc": "tsc --project tsconfig.build.json ",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|tsx|json)\"",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/santosfrancisco/react-awesome-styled-grid.git"
},
"keywords": [
"react",
"grid",
"styled-components",
"javascript"
],
"author": "Francisco Santos",
"license": "MIT",
"bugs": {
"url": "https://github.com/santosfrancisco/react-awesome-styled-grid/issues"
},
"homepage": "https://awesome-styled-grid.netlify.app/",
"peerDependencies": {
"react": ">=18",
"styled-components": ">=6"
},
"devDependencies": {
"@babel/cli": "7.24.6",
"@babel/core": "7.24.6",
"@babel/plugin-external-helpers": "7.24.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-runtime": "7.24.6",
"@babel/preset-env": "7.24.6",
"@babel/preset-react": "7.24.6",
"@babel/preset-typescript": "7.24.6",
"@docusaurus/core": "3.2.1",
"@docusaurus/module-type-aliases": "3.2.1",
"@docusaurus/preset-classic": "3.2.1",
"@docusaurus/remark-plugin-npm2yarn": "3.2.1",
"@docusaurus/theme-live-codeblock": "3.2.1",
"@docusaurus/tsconfig": "3.2.1",
"@docusaurus/types": "3.2.1",
"@emotion/is-prop-valid": "1.2.2",
"@jest/globals": "29.7.0",
"@mdx-js/react": "3.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@testing-library/react": "15.0.2",
"@types/jest": "27",
"@types/react": "18.2.74",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"@use-it/event-listener": "0.1.7",
"all-contributors-cli": "6.16.0",
"babel-eslint": "10.1.0",
"babel-jest": "27",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "2.1.4",
"babel-plugin-transform-class-properties": "6.24.1",
"clsx": "2.0.0",
"eslint": "7.2.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-standard": "4.0.1",
"globals": "15.0.0",
"jest": "27",
"jest-cli": "27",
"jest-styled-components": "7.2.0",
"prettier": "3.2.5",
"prism-react-renderer": "2.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"regenerator-runtime": "0.13.5",
"rollup": "4.14.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"styled-components": "6.1.8",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.2.2"
},
"resolutions": {
"tough-cookie": "^4.1.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=18.0"
}
}