-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.63 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
{
"name": "did-admin-panel",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --passWithNoTests --watch --detectOpenHandles --coverage",
"test:ci": "jest --passWithNoTests --watchAll=false --ci",
"spelling": "cspell 'pages/**/*.{js,jsx,md,ts,tsx}' --no-must-find-files -c cspell.json",
"spelling:ci": "cspell run --no-must-find-files",
"stylelint:ci": "stylelint --config .stylelintrc.json",
"eslint:ci": "eslint --color --cache -f table",
"stylelint": "stylelint --config .stylelintrc.json './**/*.{css,scss}'",
"eslint": "eslint components containers controllers hooks pages services utils views --color --cache -f table",
"eslint:js:fix": "eslint components containers controllers hooks pages services utils views --fix",
"prettier": "prettier --check components containers controllers hooks pages services utils views --config ./.prettierrc.js",
"prettier:fix": "prettier --write components containers controllers hooks pages services utils views --config ./.prettierrc.js",
"prettier:ci": "prettier --check --config ./.prettierrc.js",
"check": "npm run prettier && npm run eslint && npm run stylelint",
"lefthook": "lefthook run lint"
},
"prettier": {
"stylelintIntegration": true
},
"devDependencies": {
"@babel/core": "7.19.0",
"@babel/preset-typescript": "7.17.12",
"@commitlint/config-conventional": "16.2.1",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
"@testing-library/user-event": "14.1.1",
"@types/formidable": "2.0.5",
"@types/jest": "27.4.1",
"@types/node": "17.0.25",
"@types/react": "18.0.6",
"@types/react-currency-format": "^1.0.0",
"@types/react-dom": "18.0.2",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@typescript-eslint/parser": "5.20.0",
"babel-jest": "27.5.1",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"commitlint": "16.2.4",
"cspell": "5.19.7",
"eslint": "8.13.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-formatter-table": "7.32.1",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.4.6",
"eslint-plugin-n": "15.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-testing-library": "5.3.1",
"identity-obj-proxy": "3.0.0",
"jest": "28.0.3",
"lefthook": "1.1.1",
"markdown-link-check": "^3.10.0",
"postcss": "8.4.12",
"prettier": "2.6.2",
"sass": "1.50.1",
"stylelint": "14.7.1",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-config-standard": "25.0.0",
"stylelint-scss": "4.2.0",
"ts-jest": "28.0.3",
"ts-node-dev": "1.1.8",
"typescript": "4.6.3"
},
"dependencies": {
"@apollo/client": "3.5.10",
"@aws-sdk/client-s3": "3.160.0",
"@magic-sdk/admin": "1.4.1",
"@types/prop-types": "15.7.5",
"aws-sdk": "2.1213.0",
"axios": "0.27.2",
"formidable": "2.0.1",
"graphql": "16.3.0",
"magic-sdk": "10.0.0",
"next": "12.1.5",
"next-auth": "4.3.4",
"nextjs-cors": "^2.1.1",
"nodemailer": "6.7.5",
"react": "18.0.0",
"react-currency-format": "^1.1.0",
"react-dom": "18.0.0",
"react-hook-form": "7.30.0",
"react-toastify": "8.2.0",
"sharp": "0.30.7",
"sweetalert2": "11.4.32",
"sweetalert2-react-content": "5.0.3",
"uuid": "8.3.2"
}
}