-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.09 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
126
{
"name": "@ticketswap/solar",
"private": true,
"version": "0.0.0-development",
"license": "MIT",
"repository": "https://github.com/TicketSwap/solar",
"main": "./dist/main.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"commit": "git-cz",
"clean": "rm -rf dist && mkdir dist",
"prebuild": "yarn clean",
"type-check": "tsc",
"dev": "yarn type-check -- --watch",
"build": "yarn build:types && yarn build:rollup",
"build:rollup": "rollup --c ./config/rollup.config.js",
"build:types": "tsc --emitDeclarationOnly",
"postbuild": "yarn prepdist",
"prepdist": "node ./config/prepareDist.js",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest test --coverage",
"test:watch": "jest test --watch",
"lint": "eslint src",
"dev-pack": "yarn build && cd dist && npm pack",
"prepublishOnly": "yarn build",
"prettier": "prettier \"**/*.+(js|jsx|json|yml|yaml|css|scss|ts|tsx|md|mdx|graphql)\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "yarn prettier -- --write",
"validate": "yarn test && yarn prettier -- --list-different",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.8.1",
"react": ">=16",
"react-dom": ">=16"
},
"prettier": {
"bracketSpacing": true,
"bracketSameLine": false,
"semi": false,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"dependencies": {
"@reach/accordion": "^0.17.0",
"@reach/auto-id": "^0.17.0",
"@reach/dialog": "^0.17.0",
"@reach/menu-button": "^0.17.0",
"@reach/tabs": "^0.17.0",
"@reach/tooltip": "^0.18.0",
"compute-scroll-into-view": "^3.0.3",
"downshift": "^6.1.12",
"jest-environment-jsdom": "^29.1.2",
"scroll-into-view-if-needed": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/config-conventional": "^17.1.0",
"@emotion/babel-plugin": "^11.10.2",
"@emotion/jest": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.10.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@storybook/addon-essentials": "^7.4.1",
"@storybook/react": "^7.4.1",
"@storybook/react-webpack5": "^7.4.1",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"babel-loader": "^9.1.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "8.x",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"is-ci-cli": "^2.2.0",
"jest": "^29.6.4",
"jest-runner-eslint": "^1.1.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-node-externals": "^5.1.3",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^21.0.9",
"size-limit": "^9.0.0",
"storybook": "^7.4.1",
"storybook-addon-theme-toggle": "^0.0.1",
"storybook-addon-themes": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}