-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
69 lines (69 loc) · 1.89 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
{
"name": "react-grid-system",
"version": "8.2.1",
"description": "A powerful Bootstrap-like responsive grid system for React.",
"main": "./build/index.js",
"scripts": {
"start": "styleguidist server",
"build": "rimraf build && npx browserslist --update-db && babel src -d build",
"docs": "styleguidist build",
"lint": "eslint *.js src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"types": "./index.d.ts",
"files": [
"build",
"src",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sealninja/react-grid-system.git"
},
"keywords": [
"react",
"bootstrap",
"grid",
"responsive"
],
"author": "Sealninja",
"license": "MIT",
"bugs": {
"url": "https://github.com/sealninja/react-grid-system/issues"
},
"homepage": "https://github.com/sealninja/react-grid-system/issues",
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead",
"peerDependencies": {
"react": "^16.8.0 || ^17.x || ^18.x"
},
"dependencies": {
"prop-types": "15.8.1"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"babel-eslint": "10.1.0",
"babel-loader": "9.2.1",
"eslint": "9.15.0",
"@eslint/compat": "1.2.3",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.15.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-styleguidist": "13.1.3",
"rimraf": "6.0.1",
"webpack": "5.96.1"
}
}