forked from noherczeg/system-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.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
{
"name": "system-react",
"version": "1.0.0",
"description": "",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js"
}
},
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"build:dev": "rollup -c",
"watch": "rollup -c -w",
"format": "prettier --config .prettierrc \"src/**/*.{js,jsx,ts,tsx}\" --write --loglevel error",
"preview": "serve dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/systemjs": "^6.13.0",
"cross-env": "^7.0.3",
"prettier": "^2.8.1",
"rollup": "^3.7.5",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-esbuild": "^5.0.0",
"serve": "^14.1.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/material": "^5.11.0",
"@mui/x-data-grid": "^5.17.16",
"@mui/x-date-pickers": "^5.0.11",
"@remix-run/router": "^1.1.0",
"axios": "^1.2.1",
"dayjs": "^1.11.7",
"i18next": "^22.4.5",
"material-icons": "^1.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.1",
"react-router": "^6.5.0",
"react-router-dom": "^6.5.0",
"systemjs": "^6.13.0"
}
}