-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.61 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
120
121
122
123
124
{
"name": "instant-preview",
"version": "1.5.1",
"description": "SPA for previewing instagram profile",
"author": "Ivan Voronin",
"license": "Apache-2.0",
"engineStrict": true,
"engines": {
"node": "12.18.3"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack/dev.js",
"build": "NODE_ENV=production webpack --config webpack/prod.js",
"analyzer": "ANALYZER=1 yarn build",
"lint": "yarn eslint && yarn stylelint",
"eslint": "eslint './**/*.{js,ts,tsx}'",
"stylelint": "stylelint 'src/**/*.scss'",
"unit": "jest",
"size": "size-limit",
"e2e": "cypress run --headless --browser electron",
"e2e:docker": "docker run -it --rm -v $PWD:/e2e -w /e2e instantpreview/cypress cypress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voronin-ivan/instant-preview.git"
},
"dependencies": {
"@sentry/browser": "5.16.1",
"classnames": "2.2.6",
"core-js": "3.1.4",
"html2canvas": "1.0.0-alpha.12",
"i18next": "19.4.5",
"idb-keyval": "3.1.0",
"react": "16.8.6",
"react-beautiful-dnd": "11.0.4",
"react-dom": "16.8.6",
"react-i18next": "11.5.0",
"react-image-crop": "8.4.2",
"react-redux": "7.2.0",
"react-svg": "7.1.0",
"react-toolbox": "2.0.0-beta.13",
"react-tooltip-lite": "1.12.0",
"react-yandex-metrika": "2.4.2",
"redux": "4.0.1",
"redux-devtools-extension": "2.13.5",
"redux-form": "8.2.3",
"typesafe-actions": "4.4.0"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/preset-env": "7.4.5",
"@cypress/webpack-preprocessor": "5.7.0",
"@size-limit/preset-app": "4.5.7",
"@types/classnames": "2.2.6",
"@types/cypress-image-snapshot": "3.1.5",
"@types/html2canvas": "0.0.35",
"@types/react": "16.8.19",
"@types/react-beautiful-dnd": "11.0.2",
"@types/react-dom": "16.8.4",
"@types/react-image-crop": "7.0.0",
"@types/react-redux": "7.1.9",
"@types/redux-form": "8.1.1",
"@typescript-eslint/eslint-plugin": "1.10.2",
"@typescript-eslint/parser": "1.10.2",
"autoprefixer": "9.1.5",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "0.1.19",
"compression-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "6.0.3",
"css-loader": "1.0.0",
"cypress": "7.2.0",
"cypress-image-snapshot": "4.0.1",
"eslint": "5.6.1",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-cypress": "2.11.3",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-no-only-tests": "2.6.0",
"eslint-plugin-react": "7.11.1",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "2.0.0",
"html-webpack-plugin": "3.2.0",
"husky": "1.1.2",
"jest": "26.4.0",
"node-sass": "4.14.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-css-variables": "0.13.0",
"postcss-loader": "3.0.0",
"sass-loader": "7.1.0",
"size-limit": "4.5.7",
"stylelint": "13.6.1",
"stylelint-config-standard": "18.2.0",
"terser-webpack-plugin": "3.0.5",
"ts-jest": "26.2.0",
"ts-loader": "5.2.1",
"typescript": "3.5.1",
"webpack": "4.41.5",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.1.4",
"workbox-webpack-plugin": "5.1.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn unit"
}
},
"browserslist": [
"last 2 versions",
"ie 10",
"iOS 8"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"size-limit": [
{
"path": "build/*.js",
"limit": "240 KB"
}
]
}