-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.68 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
{
"name": "magical",
"version": "0.1.0",
"private": true,
"homepage": "https://azbang.github.io/magical",
"author": "Andrey Zhevlakov (azbang)",
"scripts": {
"tscov": "tscov -m 95",
"deploy": "gh-pages -d dist",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"prettier": "prettier --write \"src/**/{*.js,*.jsx,*ts,*tsx}\"",
"prestart": "webpack --config vendors.webpack.config.js --mode=development",
"build": "webpack --mode=production --progress",
"start": "webpack-dev-server --progress --mode=development"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@vkontakte/vkui-connect": "^1.1.3",
"@vkontakte/vkui-connect-promise": "^0.1.19",
"babel-polyfill": "^6.26.0",
"fast-average-color": "^5.2.0",
"mobx": "^5.10.1",
"mobx-react": "^6.1.1",
"react": "^16.8.6",
"react-blur-image-loader": "^0.2.2",
"react-dom": "^16.8.6",
"react-masonry-layout": "^0.4.0",
"react-router-dom": "^5.0.1",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@liftr/tscov": "^1.4.1",
"@types/jest": "24.0.15",
"@types/node": "12.0.10",
"@types/react": "16.8.22",
"@types/react-dom": "16.8.4",
"@types/react-router-dom": "^4.3.4",
"@types/styled-components": "^4.1.16",
"@types/webpack-env": "^1.13.9",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-root-import": "^6.2.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^4.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^5.0.0",
"prettier": "^1.18.2",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"typescript": "3.2.1",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}