forked from Adyen/adyen-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.26 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
{
"name": "@adyen/adyen-web",
"keywords": [
"adyen",
"adyen-web",
"checkout",
"payment",
"payments",
"components"
],
"main": "dist/adyen.js",
"umd:main": "dist/adyen.js",
"types": "dist/src",
"typings": "dist/src",
"version": "3.11.0",
"license": "MIT",
"homepage": "https://docs.adyen.com/checkout",
"repository": "github:Adyen/adyen-web",
"bugs": {
"url": "https://support.adyen.com/"
},
"scripts": {
"start": "npm run dev-server",
"dev-server": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.dev.js",
"docs:generate": "typedoc --out docs src --exclude \"**/*+(index|.test).ts\"",
"build": "rm -rf dist/ && webpack --config config/webpack.prod.js",
"test": "BABEL_ENV=test jest --config config/jest.config.js",
"test:watch": "npm run test -- --watchAll",
"test:coverage": "npm run test -- --coverage",
"stats": "webpack --config config/webpack.prod.js --profile --progress --json > stats.json",
"analyze": "npm run stats && webpack-bundle-analyzer -h 0.0.0.0 -p 3024 stats.json dist/$npm_package_version",
"size": "npm run build && node ./scripts/size",
"type-check": "tsc --noEmit",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^26.0.5",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"autoprefixer": "^9.8.5",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^2.1.0",
"eslint": "^6.8.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-tsdoc": "^0.2.6",
"express": "^4.17.1",
"filesize": "^6.1.0",
"gzip-size": "^5.1.1",
"html-webpack-plugin": "^4.3.0",
"jest": "^25.5.4",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.12.0",
"postcss": "^7.0.21",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"promise": "^8.1.0",
"request": "^2.81.0",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"terser-webpack-plugin": "^3.0.7",
"ts-jest": "^25.2.0",
"ts-loader": "^8.0.1",
"tslib": "^2.0.0",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2",
"whatwg-fetch": "^3.2.0"
},
"dependencies": {
"@types/applepayjs": "^3.0.0",
"@types/googlepay": "^0.4.1",
"classnames": "^2.2.6",
"preact": "^10.4.6"
},
"files": [
"dist",
"LICENSE",
"README"
]
}