-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.1 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
{
"name": "transmish",
"version": "0.0.7",
"description": "React utility library",
"repository": "[email protected]:cargurus/transmish.git",
"author": "Ian Schwartz <[email protected]>",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"private": false,
"type": "commonjs",
"exports": {
".": {
"require": "./cjs/index.jsx",
"default": "./esm/index.jsx"
}
},
"module": "./esm/index.jsx",
"main": "./cjs/index.jsx",
"scripts": {
"build": "tsc --project tsconfig.esm.json & tsc --project tsconfig.cjs.json",
"lint": "eslint src/**/*.ts* && prettier src/**/*.ts*",
"lint:fix": "prettier src/**/*.ts* -w && eslint src/**/*.ts* --fix",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.19.3",
"@jest/types": "^28.1.3",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack4": "^6.5.12",
"@storybook/manager-webpack4": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.1",
"@testing-library/user-event": "^13.0.16",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.5",
"@types/react": "16.9.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-loader": "^8.2.5",
"eslint": "^8.22.0",
"eslint-plugin-react": "^7.31.8",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.1.2",
"prettier": "2.7.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"ts-jest": "^28.0.6",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0"
}
}