-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@am92/react-design-system",
"version": "2.5.0",
"description": "ReactJS Design System using Material UI",
"sideEffects": false,
"types": "dist/index.d.ts",
"module": "dist/index.js",
"main": "dist/index.js",
"type": "module",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.json"
],
"dependencies": {
"@emotion/react": "~11.11.4",
"@emotion/styled": "~11.11.0",
"@mui/base": "~5.0.0-beta.26",
"@mui/lab": "5.0.0-alpha.155",
"@mui/material": "~5.14.20",
"@mui/system": "~5.14.20",
"@mui/x-date-pickers": "~6.19.5",
"date-fns": "~2.30.0",
"lottie-react": "~2.4.0",
"notistack": "~3.0.1",
"prop-types": "~15.8.1",
"swiper": "~11.0.6"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-react": "^7.18.6",
"@types/node": "^18.15.3",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.2.7",
"@types/react-slick": "^0.23.12",
"npm-run-all": "^4.1.5",
"typescript": "^5.1.3",
"utility-types": "^3.11.0"
},
"peerDependencies": {
"react": "^18.x.x",
"react-dom": "^18.x.x"
},
"scripts": {
"compile": "tsc",
"build:clean": "rm -rf ./dist",
"build": "npm-run-all build:clean compile",
"test": "echo 'Error: no test specified'",
"preversion": "npm-run-all build test",
"version": "echo 'Versioning'",
"postversion": "git push && git push --tags && npm run publish:pkg",
"publish:pkg": "npm publish"
},
"repository": "[email protected]:heliumtank92/am92-react-design-system.git",
"homepage": "https://github.com/heliumtank92/am92-react-design-system#readme",
"contributors": [
{
"name": "Ankit Gandhi",
"email": "[email protected]",
"url": "https://github.com/ankitgandhi452"
},
{
"name": "Mehul Agarwal",
"email": "[email protected]",
"url": "https://github.com/agarwalmehul"
}
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"react",
"reactjs",
"material",
"material ui",
"design system"
]
}