-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
80 lines (80 loc) · 2.53 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": "mogboard-next",
"version": "1.0.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"analyze": "cross-env ANALYZE=true next build",
"prettier:check": "prettier --check \"**/*.{ts,tsx,css,scss}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx,css,scss}\"",
"i18n:extract": "cross-env NODE_ENV=development lingui extract",
"i18n:compile": "lingui compile"
},
"dependencies": {
"@badrap/bar-of-progress": "^0.2.2",
"@floating-ui/react-dom-interactions": "^0.6.4",
"@lingui/core": "^3.14.0",
"@lingui/macro": "^3.14.0",
"@lingui/react": "^3.14.0",
"@next/bundle-analyzer": "^12.2.5",
"@types/lodash.clonedeep": "^4.5.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"date-fns": "^2.29.2",
"framer-motion": "^6.3.11",
"highcharts": "^10.1.0",
"highcharts-react-official": "^3.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"mariadb": "^3.0.2",
"nanoid": "^4.0.0",
"next": "^12.2.5",
"next-api-decorators": "^2.0.0",
"next-auth": "^4.18.7",
"react": "18.2.0",
"react-content-loader": "^7.0.0",
"react-cookie": "^4.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"retry-as-promised": "^7.0.3",
"s-ago": "^2.2.0",
"sharp": "^0.30.7",
"simplebar-react": "^2.4.1",
"sprintf-js": "^1.1.2",
"swr": "^2.0.0",
"uuid": "^8.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-decorators": "^7.20.7",
"@lingui/cli": "^3.14.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-copy-to-clipboard": "^5.0.3",
"@types/react-dom": "18.0.5",
"@types/sprintf-js": "^1.1.2",
"@types/uuid": "^8.3.4",
"babel-jest": "^28.1.2",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-parameter-decorator": "^1.0.16",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"cross-env": "^7.0.3",
"eslint": "8.18.0",
"eslint-config-next": "^12.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"prettier": "^2.7.1",
"sass": "^1.52.3",
"typescript": "^4.9.0"
}
}