-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.53 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.53 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
{
"name": "admin",
"version": "1.0.0",
"description": "- se recomienda usar vscode como editor - plugin ESLint vscode - Prettier - Code formatter vscode - usar la siguiente configuración en vscode: { \"files.trimTrailingWhitespace\": true, \"editor.tabSize\": 2, \"files.autoSave\": \"off\", \"editor.wordWrap\": \"off\", \"editor.formatOnSave\": true, \"prettier.singleQuote\": true, \"prettier.jsxSingleQuote\": true, \"prettier.semi\": false, \"prettier.arrowParens\": \"always\", \"prettier.trailingComma\": \"es5\", \"prettier.htmlWhitespaceSensitivity\": \"ignore\", \"[javascript]\": { \"editor.defaultFormatter\": \"esbenp.prettier-vscode\" },, \"eslint.autoFixOnSave\": true, \"eslint.alwaysShowStatus\": true, }",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.prod.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config webpack/webpack.dev.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hot-loader/react-dom": "^16.9.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"classnames": "^2.2.6",
"core-js": "^3.2.1",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"moment": "^2.24.0",
"nprogress": "^0.2.0",
"promise-polyfill": "^8.1.3",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.12.0",
"react-escape-outside": "^0.1.1",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.12.12",
"react-modal": "^3.11.1",
"react-notifications-component": "^2.2.4",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-router-transition-switch": "^1.1.1",
"react-transition-group": "^4.3.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.1",
"babel-plugin-module-resolver": "^3.2.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"error-overlay-webpack-plugin": "^0.4.1",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"sass-loader": "^8.0.0",
"simple-progress-webpack-plugin": "^1.1.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"typescript": "^3.7.4",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2"
}
}