-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.87 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
119
{
"name": "simple-design-system",
"version": "1.0.0",
"description": "A simple design system custom build with React and Webpack",
"private": true,
"workspaces": [
"src/components/UI/molecules/*"
],
"keywords": [
"react"
],
"homepage": ".",
"bugs": {
"url": "https://github.com/DungGramer/simple-design-system/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DungGramer/simple-design-system.git"
},
"license": "ISC",
"author": "DungGramer",
"main": "./src/index.js",
"scripts": {
"analytics": "cross-env ANALYZER=true yarn build",
"bs": "yarn build && yarn serve",
"build": "webpack --color --progress --config ./config/webpack.prod.js",
"clean": "rimraf dist/ node_modules/ package-lock.json yarn.lock && yarn cache clean",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" --config ./config/.prettierrc",
"lint": "eslint --ext js,jsx,ts,tsx src/",
"lint:fix": "eslint --fix --ext js,jsx,ts,tsx src/",
"lint:style": "stylelint --fix \"src/**/*.{css,scss}\"",
"ngrok": "ngrok http 3090 --host-header=\"localhost:3090\"",
"serve": "serve -s ./dist/",
"start": "webpack serve --open --config ./config/webpack.dev.js",
"start:https": "cross-env HTTPS=true yarn start",
"test:es-check": "es-check es5 dist/assets/js/*.js"
},
"browserslist": [
">= 5%",
"last 2 versions",
"not ie < 11",
"not op_mini all",
"not dead"
],
"dependencies": {
"core-js": "^3.23.3",
"lottie-web": "^5.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.2",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-transform-runtime": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@dunggramer/prettier": "^4.0.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/react-syntax-highlighter": "^15.5.1",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"babel-plugin-add-module-exports": "^1.0.4",
"browserslist": "^4.21.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"dotenv": "^16.0.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"i18next": "^21.8.3",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.14",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.0.0",
"postcss-normalize": "^10.0.1",
"postcss-scss": "^4.0.4",
"prettier": "^2.6.2",
"raw-loader": "^4.0.2",
"react-i18next": "^11.16.9",
"react-icons": "^4.3.1",
"react-refresh": "^0.10.0",
"react-svg-loader": "^3.0.3",
"react-syntax-highlighter": "^15.5.0",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"serve": "^12.0.1",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^3.3.1",
"stylelint": "^14.0.1",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.0.0",
"terser-webpack-plugin": "^5.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.72.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cdn-plugin": "^3.3.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
},
"optionalDependencies": {
"es-check": "^7.0.1",
"fsevents": "^2.3.2"
}
}