-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
125 lines (125 loc) · 3.9 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
125
{
"name": "@swedbankpay/design-guide",
"version": "10.12.2",
"description": "Swedbank Pay Design Guide",
"main": "src/scripts/main/index.js",
"scripts": {
"start": "webpack serve --mode development",
"start:payex": "webpack serve --mode development --env brand=payex",
"start:prod": "webpack serve --mode production",
"start:prod:payex": "webpack serve --mode production --env brand=payex",
"build": "webpack --mode development",
"build:analyze": "webpack --mode production --env analyze=true",
"build:payex": "webpack --mode development --env brand=payex",
"build:prod": "webpack --mode production",
"build:prod:payex": "webpack --mode production --env brand=payex",
"test": "jest",
"test:update": "jest --updateSnapshot",
"test:coverage": "jest --collectCoverage true",
"eslint": "eslint src/**/*.js",
"stylelint": "stylelint src/**/*.less",
"lint": "npm run eslint && npm run stylelint",
"response-time": "node tools/check-response-time.js",
"postinstall": "node ./post-install.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swedbankpay/design.swedbankpay.com.git"
},
"keywords": [],
"author": "Swedbank Pay",
"license": "MIT",
"bugs": {
"url": "https://github.com/swedbankpay/design.swedbankpay.com/issues"
},
"homepage": "https://github.com/swedbankpay/design.swedbankpay.com#readme",
"browserslist": [
"last 3 versions",
"> 1%",
"not dead"
],
"dependencies": {
"@codesandbox/sandpack-react": "^1.20.7",
"@typescript-eslint/experimental-utils": "^5.62.0",
"chalk": "^4.1.2",
"chart.js": "^2.9.4",
"classnames": "^2.5.1",
"core-js": "^3.36.1",
"flatpickr": "^4.6.13",
"js-beautify": "^1.15.1",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"react-router-hash-link": "^2.4.3"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@playwright/test": "^1.48.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"babel-loader": "^9.1.3",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"css-loader": "^6.11.0",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^5.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-testing-library": "^6.2.0",
"favicons": "^7.2.0",
"favicons-webpack-plugin": "^6.0.1",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^27.5.1",
"less": "^4.2.0",
"less-loader": "^11.1.4",
"mini-css-extract-plugin": "^2.8.1",
"node-fetch": "^3.3.2",
"postcss-less": "^6.0.0",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.5.4",
"prettier": "^3.2.5",
"react-test-renderer": "^18.2.0",
"style-loader": "^3.3.4",
"stylelint": "^15.11.0",
"stylelint-config-recommended-less": "^2.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.92.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2"
},
"files": [
"src/fonts/",
"src/icons/",
"src/img/payex",
"src/img/swedbankpay/logo",
"src/img/swedbankpay/favicon.png",
"src/less/components",
"src/less/core",
"src/less/utilities",
"src/less/global.less",
"src/less/payex.less",
"src/less/variables-payex.less",
"src/less/swedbankpay.less",
"src/less/variables-swedbankpay.less",
"src/scripts/main/",
"src/scripts/dashboard/",
"dist/designguide/",
"post-install.js"
]
}