-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "@lightningkite/mui-lightning-components",
"version": "2.1.1",
"description": "MUI based React components to use in projects with a Lightning Server backend",
"repository": {
"type": "git",
"url": "https://github.com/lightningkite/mui-lightning-components.git"
},
"main": "dist/index.js",
"browser": "dist/index.js",
"module": "dist/index.esm.js",
"type": "module",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && rollup --config",
"tsc": "tsc",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
},
"author": "Troy DeSpain",
"license": "ISC",
"peerDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@lightningkite/lightning-server-simplified": "^1.0.1",
"@lightningkite/react-lightning-helpers": "^1.0.0-beta.0",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.14.0",
"@mui/x-data-grid": "^6.10.0",
"@mui/x-date-pickers": ">=6.10.0",
"dayjs": ">=1.11.9",
"formik": ">=2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"babel-loader": "^9.1.3",
"rimraf": "^5.0.1",
"rollup": "^3.26.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.35.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
}
}