-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 4.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "almond-dashboard",
"description": "Almond dashboard application for the hydroponics farm",
"author": "Francis Masha",
"email": "francismasha96@gmail.com",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev -p 3000",
"build": "next build",
"start": "next start -p 3000",
"prettier:fix": "prettier './src/**/*.{tsx,ts}' --write",
"eslint:fix": "eslint ./src --fix",
"codeStyle:fix": "yarn prettier:fix && yarn eslint:fix",
"husky": "pretty-quick --staged && yarn prettier && yarn tslint",
"prettier": "prettier --write './src/**/*.{tsx,ts}'",
"tslint": "tsc --noEmit && eslint \"*/**/*.{tsx,ts}\" --quiet",
"test:unit": "cross-env NODE_ENV=testing jest -u --maxWorkers=4",
"test:coverage": "yarn test:unit --coverage",
"test:watch": "yarn test:unit --watch --verbose",
"prepare": "husky install",
"commit": "cz",
"commit:signed": "cz -S",
"clear-all": "rimraf ./.cache ./.next ./dist"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.8.8",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.79",
"@mui/material": "^5.6.3",
"@mui/styles": "^5.6.2",
"@mui/x-data-grid": "next",
"aos": "^2.3.4",
"axios": "^0.27.2",
"card-validator": "^8.1.1",
"chart.js": "^3.7.1",
"chartjs-adapter-luxon": "^1.1.0",
"chartjs-plugin-streaming": "^2.0.0",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dayjs": "^1.11.1",
"dequal": "^2.0.2",
"dotenv": "^16.0.0",
"firebase": "^9.6.11",
"firebase-admin": "^10.1.0",
"firebase-functions": "^3.20.1",
"highcharts": "^10.0.0",
"highcharts-react-official": "^3.1.0",
"jarallax": "^2.0.3",
"js-cookie": "^3.0.1",
"jwt-decode": "^3.1.2",
"localforage": "^1.10.0",
"luxon": "^2.3.2",
"mqtt": "^4.3.7",
"mqtt-pattern": "^1.2.0",
"mqtt-react-hooks": "^2.0.3",
"next": "^12.1.5",
"next-images": "^1.8.4",
"next-optimized-images": "^2.6.2",
"next-pwa": "^5.5.2",
"next-redux-wrapper": "^7.0.5",
"nextjs-cors": "^2.1.1",
"pino-logflare": "^0.3.12",
"react": "^18.1.0",
"react-chartjs-2": "^4.1.0",
"react-countup": "^6.2.0",
"react-dom": "^18.1.0",
"react-ga": "^3.3.0",
"react-hexgrid": "^1.0.4",
"react-hook-form": "^7.30.0",
"react-images": "^1.1.7",
"react-lazy-load-image-component": "^1.5.4",
"react-redux": "^8.0.1",
"react-slick": "^0.29.0",
"react-syntax-highlighter": "^15.5.0",
"react-typed": "^1.2.0",
"react-visibility-sensor": "^5.1.1",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-immutable-state-invariant": "^2.1.0",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.5",
"sass": "^1.51.0",
"slick-carousel": "^1.8.1",
"validate.js": "^0.13.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.1.1",
"@types/aos": "^3.0.4",
"@types/chart.js": "^2.9.37",
"@types/node": "^17.0.29",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@types/react-lazy-load-image-component": "^1.5.2",
"@types/react-redux": "^7.1.24",
"@types/redux-immutable-state-invariant": "^2.1.2",
"@types/redux-mock-store": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.0.2",
"babel-plugin-styled-components": "^2.0.7",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-config-next": "^12.1.5",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-testing-library": "^5.3.1",
"globby": "^13.1.1",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.0.2",
"lint-staged": "^12.4.1",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.4",
"prettier": "^2.6.2",
"prettier-eslint": "^14.0.2",
"prettier-eslint-cli": "^5.0.1",
"pretty-quick": "^3.1.3",
"react-test-renderer": "^18.1.0",
"rimraf": "^3.0.2",
"snyk": "^1.914.0",
"typescript": "^4.6.3"
},
"packageManager": "yarn@3.1.0"
}