-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "@alteryx/mini-tate",
"version": "2.0.1",
"description": "",
"sideEffects": [
"*.css"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && cp src/*/*.css dist/components",
"lint": "eslint --ext ts,tsx src/*",
"test": "jest --env=jsdom"
},
"author": "alter-noodle",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-jest": "^29.4.3",
"eslint": "^8.11.0",
"jest": "^29.4.3",
"jest-cli": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.2.10",
"ts-jest": "^29.0.5",
"typescript": "^4.6.2"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.11",
"@reduxjs/toolkit": "^1.8.1",
"@types/react-redux": "^7.1.24",
"core-js": "^3.29.0",
"lodash": "^4.17.21",
"react-redux": "^8.0.1"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}