-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 3.08 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
{
"name": "pn-dev-toolbox",
"version": "0.4.0",
"author": "Craig Conover ([email protected])",
"license": "MIT",
"description": "Simple tools for PubNub Developers to inspect and troubleshoot PubNub applications and data.",
"homepage": "https://pubnub.com",
"bugs": {
"url": "https://github.com/PubNubDevelopers/pn-toolbox-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/PubNubDevelopers/pn-toolbox-react"
},
"scripts": {
"start": "concurrently 'npm run server' 'npm run client'",
"client": "react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "nodemon server.js --ignore client",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"compile:scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/assets/scss/argon-dashboard-pro-material-ui.scss src/assets/css/argon-dashboard-pro-material-ui.css",
"minify:scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/assets/scss/argon-dashboard-pro-material-ui.scss src/assets/css/argon-dashboard-pro-material-ui.min.css --output-style compressed",
"map:scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/assets/scss/argon-dashboard-pro-material-ui.scss src/assets/css/argon-dashboard-pro-material-ui.css --source-map true",
"all:scss": "npm run compile:scss && npm run minify:scss && npm run map:scss"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fortawesome/fontawesome-free": "5.15.2",
"@fullcalendar/common": "^5.11.0",
"@fullcalendar/daygrid": "^5.11.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.8.3",
"bootstrap": "4.6.0",
"clsx": "^1.1.1",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"express": "^4.18.1",
"papaparse": "^5.4.1",
"prop-types": "^15.8.1",
"pubnub": "^7.6.2",
"quill": "^1.3.7",
"react": "17.0.1",
"react-bootstrap-sweetalert": "^5.2.0",
"react-datetime": "^3.1.1",
"react-dom": "17.0.1",
"react-perfect-scrollbar": "^1.5.8",
"react-router-dom": "5.2.0",
"react-timer-hook": "^3.0.5",
"react-toastify": "^8.0.3",
"reactstrap": "^9.1.1",
"request": "^2.88.2"
},
"optionalDependencies": {
"popper.js": "1.16.1",
"typescript": "4.1.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^6.4.0",
"eslint-plugin-unused-imports": "1.1.0",
"node-sass-package-importer": "^3.0.4",
"nodemon": "^2.0.16",
"react-scripts": "^5.0.0",
"sass": "^1.52.3"
},
"keywords": [],
"proxy": "http://localhost:5000/",
"secure": false,
"directories": {
"doc": "docs"
}
}