-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.51 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.51 KB
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
{
"name": "single-page-app-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p ${PORT:-8080}",
"dev:win": "next dev -p 8080",
"build": "next build",
"export": "next export",
"start": "next start -p ${PORT:-8080}",
"start:win": "next start -p 8080",
"serve": "serve -l ${PORT:-8080} ./out",
"lint": "eslint --ext js,jsx,ts,tsx --fix .",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"test-integration": "bash ./test/testenv_cli.sh",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@mui/icons-material": "^5.8.4",
"@mui/material": "=5.13.6",
"@mui/styles": "^5.9.3",
"@mui/x-date-pickers": "^5.0.5",
"@types/acl": "^0.4.41",
"acl2": "^3.0.1",
"axios": "^0.27.2",
"clsx": "^1.2.1",
"date-fns": "^2.29.1",
"graphql": "^15.8.0",
"graphql-request": "^4.3.0",
"i18next": "^21.8.16",
"i18next-browser-languagedetector": "^6.1.4",
"inflection": "^1.13.2",
"jwt-decode": "^3.1.2",
"next": "^12.2.4",
"next-auth": "^4.10.3",
"next-plugin-preval": "^1.2.4",
"notistack": "^2.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^11.18.3",
"sharp": "^0.30.7",
"swr": "^1.3.0",
"xlsx": "^0.18.5",
"zendro-bulk-create": "github:Zendro-dev/zendro-bulk-create#0.8.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@cypress/code-coverage": "^3.9.8",
"@next/eslint-plugin-next": "^12.2.4",
"@types/inflection": "^1.13.0",
"@types/node": "^18.6.4",
"@types/prettier": "^2.7.0",
"@types/react": "18.0.16",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"ajv": "^8.11.0",
"babel-plugin-istanbul": "^6.0.0",
"cypress": "^7.6.0",
"eslint": "^8.21.0",
"eslint-config-next": "^12.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"serve": "^14.0.1",
"typescript": "^4.7.4",
"utility-types": "^3.10.0",
"wait-on": "^6.0.1"
}
}