-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.08 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
{
"name": "@dwolla/react-drop-ins",
"version": "1.1.0",
"description": "React bindings for Dwolla's drop-in components",
"repository": {
"type": "git",
"url": "https://github.com/Dwolla/react-drop-ins.git"
},
"keywords": [
"react",
"drop-ins",
"dwolla",
"drop-in components"
],
"license": "MIT",
"homepage": "https://github.com/Dwolla/react-drop-ins",
"main": "bundle/index.js",
"module": "bundle/index.mjs",
"types": "bundle/index.d.ts",
"files": [
"bundle"
],
"scripts": {
"_eslint": "eslint \"src/**/*.{ts,tsx}\" \"*.mjs\"",
"_prettier": "prettier *.md \"src/**/*.{ts,tsx}\" \"*.mjs\"",
"build:check": "tsc --noEmit",
"bundle": "rollup -c",
"checks": "pnpm format:check && pnpm lint:check",
"clean": "rimraf build bundle",
"fix": "pnpm format:fix && pnpm lint:fix",
"format:check": "pnpm _prettier --check",
"format:fix": "pnpm _prettier --write",
"lint:check": "pnpm _eslint",
"lint:fix": "pnpm _eslint --fix",
"test": "jest --clearCache && jest --watch",
"test:ci": "jest --clearCache && jest --ci",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "^13.4.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.11",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-loader": "^8.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-storybook": "^0.6.10",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-script-hook": "^1.7.2",
"react-test-renderer": "^18.2.0",
"rimraf": "^4.1.2",
"rollup": "^3.14.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-ts": "^3.2.0",
"storybook-addon-mock": "^3.2.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix --cache-location './node_modules/@eslint/.eslintcache/'",
"src/**/*.{ts,tsx,json}": "prettier --write --ignore-unknown"
}
}