This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.07 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
{
"name": "@tecsinapse/chat",
"description": "TecSinapse Chat",
"version": "3.2.21",
"main": "build/index.js",
"module": "build/index.js",
"dependencies": {
"@livechat/ui-kit": "^0.4.0-10",
"@material-ui/core": "^4.11.1",
"@material-ui/styles": "^4.11.1",
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.4.0",
"@tecsinapse/es-utils": "^6.0.10",
"@tecsinapse/react-mic": "1.3.3",
"@tecsinapse/ui-kit": "^5.6.10",
"@tecsinapse/uploader": "^2.6.5",
"clsx": "^1.1.1",
"enumify": "^1.0.4",
"moment": "^2.27.0",
"prop-types": "^15.7.2",
"react-compound-timer": "^1.2.0",
"react-dropzone": "^11.2.4",
"uniqid": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@storybook/addon-docs": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/theming": "^5.3.19",
"@tecsinapse/eslint-config-tecsinapse-js": "^3.0.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"babel-core": "^7.0.0-beta.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-inline-react-svg": "^1.0.1",
"core-js": "2.5.7",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-mdx": "^1.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react-hooks": "^2.3.0",
"git-dirty": "^1.0.2",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.1.3",
"npm-check-updates": "^3.1.23",
"prettier": "^2.0.5",
"prettier-plugin-packagejson": "^2.2.5",
"promise-polyfill": "^8.1.3",
"react-textarea-autosize": "^7.1.0",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.3",
"source-map-explorer": "^2.0.0",
"uuid": "^3.3.2"
},
"files": [
"build",
"dist"
],
"scripts": {
"analyze": "npx source-map-explorer 'dist/*.js'",
"build": "rimraf -rf build/ && babel src/ -d build/",
"build-all": "yarn build && yarn storybook:build",
"build-publish": "yarn build-all && npm publish",
"eslint:fix": "npx eslint ./src --ext .js --fix",
"hooks": "bash .git/hooks/pre-commit",
"prestart": "yarn install",
"publish:beta": "npm publish --tag beta",
"start": "yarn install && yarn storybook",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o docs/",
"test": "NODE_ENV=test jest",
"test:windows": "set NODE_ENV=test&& jest"
},
"license": "ISC",
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --max-warnings=0 --fix --no-ignore",
"prettier --write",
"git add"
]
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"sideEffects": false
}