forked from brendanbond/react-acceptjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "react-acceptjs",
"version": "0.4.0",
"description": "A lightweight, modern React implementation of Authorize.net's Accept.JS library for easily submitting credit card information to the Authorize.net platform.",
"author": "brendanbond",
"license": "MIT",
"repository": "brendanbond/react-acceptjs",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"start": "rollup -c --watch",
"lint": "eslint . --fix"
},
"peerDependencies": {
"react": "16.8.0 - 18"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.4.0",
"@types/node": "^12.12.38",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-eslint": "^10.0.3",
"dotenv": "^10.0.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.2"
},
"files": [
"dist"
],
"dependencies": {}
}