-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.67 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
{
"name": "frontend",
"version": "1.1.2-rc60.main.20684b5",
"private": true,
"scripts": {
"dev": "next dev --port 3080",
"build": "next build",
"start": "next start",
"lint": "next lint",
"setup": "husky install && husky set .husky/pre-commit 'npm run lint-staged' && curl -s -o config_commit_lint.sh https://gist.githubusercontent.com/GridexX/c070f55c12112fb9ef0f70c259bcd740/raw/1a59a073727481246eea8bd41de0bc1db7232ade/config_commit_lint.sh && bash config_commit_lint.sh && rm ./config_commit_lint.sh",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css}'",
"lint-staged": "npm run lint && npm run format",
"test": "jest",
"translatool": "node scripts/translatool.js"
},
"dependencies": {
"@date-io/moment": "^2.16.1",
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/sortable": "^7.0.1",
"@dnd-kit/utilities": "^3.2.0",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@monaco-editor/react": "^4.4.5",
"@mui/icons-material": "^5.8.3",
"@mui/lab": "^5.0.0-alpha.85",
"@mui/material": "^5.8.3",
"@mui/system": "^5.8.4",
"@mui/x-date-pickers": "^5.0.9",
"@types/uuid": "^8.3.4",
"csv-parse": "^5.3.2",
"i18n-js": "^3.9.2",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "12.1.6",
"prop-types": "^15.8.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-markdown": "^8.0.3",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.0.3",
"sharp": "^0.30.7",
"swr": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/i18n-js": "^3.8.2",
"@types/jest": "^28.1.1",
"@types/lodash": "^4.14.182",
"@types/node": "17.0.39",
"@types/react": "18.0.11",
"@types/react-dom": "18.0.5",
"@types/react-syntax-highlighter": "^15.5.2",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"import-local": "^3.1.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"prettier": "^2.6.2",
"typescript": "4.7.3"
}
}