-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.57 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
{
"name": "@jetkit/react",
"version": "3.1.0",
"module": "build/index.js",
"main": "build/index.js",
"types": "build/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/jetbridge/jetkit-react.git"
},
"dependencies": {
"axios-jwt": ">=1.2.0",
"camelcase-keys": "*",
"classnames": "*",
"jsonwebtoken": "*",
"react-dropzone": "*",
"react-router": ">=5",
"typescript": "*",
"use-debounce": "*"
},
"peerDependencies": {
"@material-ui/core": ">=4",
"@material-ui/icons": ">=4",
"@material-ui/styles": ">=4",
"axios": ">=0.21.1",
"jetbridge-react-scripts": "latest",
"react": ">=16.8",
"react-dom": ">=16.8",
"react-router": ">=5"
},
"scripts": {
"test-ci": "CI=1 react-scripts test",
"test": "react-scripts test",
"build": "tsc",
"start": "rm -rf build && tsc -w",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"fix": "eslint --fix src/**/*.ts src/**/*.tsx",
"storybook": "cd component-library && npm i && npm run storybook",
"prepare": "tsc",
"vpub": "npm version patch && npm publish --access public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@material-ui/core": "^4.1.1",
"@material-ui/icons": "^3.0.2",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.4",
"@testing-library/react-hooks": "^3.2.1",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.0.13",
"@types/jsonwebtoken": "^8.3.2",
"@types/material-ui": "^0.21.6",
"@types/node": "12.0.0",
"@types/node-cache": "^4.1.3",
"@types/react": "^16.8.16",
"@types/react-dom": "^16.8.4",
"@types/react-router": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"axios": "^0.21.1",
"eslint": "^7.29.0",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-react-hooks": "^2.0.1",
"husky": "^2.4.1",
"jetbridge-react-scripts": "latest",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.9.0"
},
"files": [
"build"
]
}