-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 4.04 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
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
{
"name": "react-ui-icheck-website",
"description": "Website of the react-ui-icheck library.",
"version": "0.6.0",
"author": {
"name": "Victor Popkov",
"email": "[email protected]"
},
"dependencies": {
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"generic-names": "^4.0.0",
"icheck": "^1.0.2",
"js-beautify": "^1.15.1",
"lodash": "^4.17.21",
"prismjs": "^1.29.0",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-element-to-jsx-string": "15.0.0",
"react-helmet": "^6.1.0",
"react-markdown": "^9.0.1",
"react-router-bootstrap": "^0.26.3",
"react-router-dom": "^6.24.0",
"react-ui-icheck": "^0.8.1",
"reactstrap": "^9.2.2"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-proposal-export-default-from": "^7.24.7",
"@babel/plugin-proposal-function-bind": "^7.24.7",
"@babel/plugin-syntax-export-default-from": "^7.24.7",
"@babel/plugin-transform-react-display-name": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"assert": "^2.1.0",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"babel-plugin-prismjs": "^2.1.0",
"babel-plugin-webpack-alias": "^2.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cssnano": "^7.0.3",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^5.6.0",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.9.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss": "^8.4.39",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.2",
"react-refresh": "^0.14.2",
"resolve-url-loader": "^5.0.0",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"sass-resources-loader": "^2.2.5",
"style-loader": "^4.0.0",
"stylelint": "^16.6.1",
"stylelint-config-twbs-bootstrap": "^14.2.0",
"stylelint-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "5.3.10",
"url-loader": "^4.1.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0",
"yarn-audit-fix": "^10.0.7",
"yarn-deduplicate": "^6.0.2"
},
"engines": {
"node": ">=18.12.0"
},
"homepage": "https://github.victorpopkov.com/react-ui-icheck/",
"license": "MIT",
"peerDependencies": {
"react": "^16"
},
"repository": {
"type": "git",
"url": "github:victorpopkov/react-ui-icheck-website"
},
"scripts": {
"audit:fix": "yarn-audit-fix",
"build": "cross-env BABEL_ENV=production NODE_ENV=production webpack --config='./webpack/webpack.config.prod.js'",
"ci:eslint": "eslint --ext='js,jsx' --format='./.github/eslint-output.js' .",
"ci:prettier": "node ./.github/prettier-output.js",
"deduplicate": "yarn-deduplicate && yarn install",
"dev": "npm-run-all watch",
"lint": "npm-run-all --continue-on-error lint:*",
"lint:eslint": "eslint --ext='js,jsx' .",
"lint:prettier": "prettier --check .",
"lint:stylelint": "stylelint './src/**/*.css' './src/**/*.scss'",
"start": "cross-env BABEL_ENV=production NODE_ENV=production http-server ./dist/",
"watch": "cross-env APP_REVISION=dev BABEL_ENV=development NODE_ENV=development webpack serve --config='./webpack/webpack.config.dev.js'"
}
}