-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.91 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
{
"name": "example",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"scripts": {
"start": "webpack-dev-server --mode development --define process.env.localConfig='\"local\"' --config webpack.config.dev.js --port 10888 --open --hot",
"start:development": "webpack-dev-server --mode development --define process.env.localConfig='\"development\"' --config webpack.config.dev.js --port 10888 --open --hot",
"build:master": "webpack -p --mode production --define process.env.localConfig='\"production\"' --config webpack.config.js",
"build:development": "webpack -p --mode production --define process.env.localConfig='\"development\"' --config webpack.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@types/lodash": "^4.14.167",
"@types/react": "^16.9.49",
"babel-loader": "^8.0.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"css-modules-typescript-loader": "^4.0.1",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"json5-loader": "^4.0.1",
"node-sass": "^4.14.1",
"react-scoped-styles": "^0.3.2",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-obfuscator": "^3.3.2"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/runtime": "^7.9.6",
"@reduxjs/toolkit": "^1.5.0",
"@vkontakte/icons": "^1.135.0",
"@vkontakte/mvk-mini-apps-scroll-helper": "^1.2.0",
"@vkontakte/vk-bridge": "^2.4.8",
"@vkontakte/vkjs": "^0.22.1",
"@vkontakte/vkui": "^4.0.8",
"axios": "^0.24.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^1.0.0",
"decimal": "0.0.2",
"decimal.js": "^10.2.1",
"eruda": "^2.4.1",
"lodash": "^4.17.20",
"postcss-csso": "^4.0.0",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-modules-values": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.1",
"react-device-detect": "^1.15.0",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.12.21",
"react-redux": "^7.2.1",
"react-swipeable": "^5.5.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sass-loader": "^8.0.2",
"style-loader": "^0.23.0",
"url-loader": "^4.1.0",
"ws": "^7.4.2"
}
}