-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.52 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
{
"name": "design.payex.com",
"version": "2.3.4",
"description": "PayEx DesignGuide",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --mode development",
"start:prod": "webpack-dev-server --hot --mode production",
"build": "webpack --mode development --progress",
"build:prod": "webpack --mode production --progress",
"test": "jest",
"test:update": "jest --updateSnapshot",
"test:codecov": "jest && codecov",
"eslint": "eslint src/**/*.js",
"stylelint": "stylelint src/**/*.less",
"lint": "npm run eslint && npm run stylelint",
"e2e:chrome": "testcafe chrome src/**/*.spec.js",
"response-time": "node tools/check-response-time.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PayEx/design.payex.com.git"
},
"keywords": [],
"author": "PayEx",
"license": "MIT",
"bugs": {
"url": "https://github.com/PayEx/design.payex.com/issues"
},
"homepage": "https://github.com/PayEx/design.payex.com#readme",
"browserslist": [
"last 3 versions",
"> 1%",
"ie >= 11"
],
"dependencies": {
"@babel/polyfill": "^7.7.0",
"chart.js": "^2.9.2",
"classnames": "^2.2.6",
"flatpickr": "^4.6.3",
"js-beautify": "^1.10.2",
"normalize.css": "^8.0.1",
"prism-react-renderer": "^0.1.7",
"prismjs": "^1.17.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-loadable": "^5.5.0",
"react-prism": "^4.3.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-router-hash-link": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "^7.7.0",
"@sentry/browser": "^5.8.0",
"@sentry/webpack-plugin": "^1.9.3",
"app-manifest-webpack-plugin": "^1.2.0",
"autoprefixer": "^9.7.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-root-import": "^6.4.1",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.6.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-testcafe": "^0.2.1",
"file-loader": "^4.2.0",
"filemanager-webpack-plugin": "^2.0.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-fetch": "^2.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"style-loader": "^1.0.0",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"terser-webpack-plugin": "^2.2.1",
"testcafe": "^1.6.1",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}