-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.2 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
{
"name": "social-diversity-for-children",
"version": "0.0.6",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start --port ${PORT-3000}",
"svgr": "npx @svgr/cli -d src/components/icons --ignore-existing --icon --typescript public/icons",
"lint": "yarn lint:prettier && yarn lint:eslint",
"lint-modified-files": "yarn lint:prettier-modified-files && yarn lint:eslint-modified-files",
"lint:prettier": "prettier --check '**/*.{js,jsx,ts,tsx}'",
"lint:prettier-modified-files": "prettier --check --no-error-on-unmatched-pattern $(git diff --name-only --diff-filter=d origin/$GITHUB_BASE_REF HEAD | grep -E '(.js|.jsx|.ts|.tsx)$' | xargs)",
"lint:eslint": "eslint '**/*.{js,jsx,ts,tsx}' --cache --format stylish",
"lint:eslint-modified-files": "eslint $(git diff --name-only --diff-filter=d origin/$GITHUB_BASE_REF HEAD | grep -E '(.js|.jsx|.ts|.tsx)$' | xargs) --cache --format stylish",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"fix:eslint": "eslint '**/*.{js,jsx,ts,tsx}' --format stylish --fix"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.14",
"@chakra-ui/react": "^1.1.4",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@fontsource/poppins": "^4.5.0",
"@prisma/client": "^3.3.0",
"@stripe/stripe-js": "^1.15.0",
"aws-sdk": "^2.926.0",
"framer-motion": "^3.2.1",
"fs": "^0.0.2",
"moment": "^2.29.1",
"next": "^11.1.2",
"next-auth": "^3.24.0",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^8.8.0",
"nodemailer": "^6.6.1",
"prettier": "^2.2.1",
"react": "17.0.2",
"react-csv": "^2.0.3",
"react-datepicker": "^4.2.1",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-table": "^7.7.0",
"stripe": "^8.154.0",
"swr": "^0.4.2",
"typescript": "^4.1.3",
"unstated-next": "^1.1.0",
"uuid": "^8.3.2",
"validator": "^13.6.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@svgr/cli": "^5.5.0",
"@types/node": "^14.14.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-table": "^7.7.8",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "4",
"identity-obj-proxy": "^3.0.0",
"isomorphic-unfetch": "^3.1.0",
"lint-staged": "^10.5.3",
"prisma": "^3.3.0",
"style-loader": "^2.0.0",
"ts-node": "^10.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint . --format stylish --cache --fix",
"prettier --write ."
]
}
}