This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.01 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
{
"name": "box-shadow-generator",
"version": "4.3.0",
"author": {
"name": "Pavel Kuzyakin",
"email": "pavel@kuzyak.in",
"url": "http://kuzyak.in"
},
"description": "A box-shadow CSS generator that helps you quickly generate box-shadow CSS declarations for your website. Preview the result and copy the generated code to your website. No coding required!",
"keywords": [
"react",
"css",
"generator",
"boxshadow"
],
"homepage": "https://box-shadow.ru",
"dependencies": {
"@material-ui/core": "^4.9.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"bootstrap": "^4.4.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-input-color": "^4.0.1",
"react-yandex-metrika": "^2.6.0"
},
"scripts": {
"analyze": "webpack-bundle-analyzer --port 4200 dist/stats.json",
"lint:sass": "npx stylelint \"**/*.scss\" --fix --config configs/.stylelintrc.js",
"lint:js": "eslint --fix --ext .jsx,.js src -c configs/.eslintrc.js",
"lint": "npm run lint:js && npm run lint:sass",
"dev": "NODE_ENV=development webpack-dev-server --config configs/webpack/development.js",
"dev:win": "set NODE_ENV=development && webpack-dev-server --config configs/webpack/development.js",
"build": "NODE_ENV=production webpack --config configs/webpack/production.js",
"build:win": "set NODE_ENV=production && webpack --config configs/webpack/production.js",
"prod": "npm run lint && npm run build",
"destroy": "rm -rf dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-react-jsx-source": "^7.16.7",
"@babel/preset-react": "^7.18.6",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.3.1",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"normalize.css": "^8.0.1",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.2.3",
"postcss-scss": "^4.0.3",
"react-router-dom": "^6.2.1",
"sass": "^1.55.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"stylelint": "^14.2.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-standard": "^24.0.0",
"terser-webpack-plugin": "^5.3.0",
"uglify-js": "^3.14.5",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpackbar": "^5.0.2"
}
}