-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.13 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.13 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "with-typescript",
"version": "1.0.0",
"engines": {
"node": "16.20.2"
},
"scripts": {
"dev": "next",
"dev:pretty": "next | pino-pretty",
"build": "next build",
"start": "prisma migrate deploy && prisma generate && next start -p $PORT",
"type-check": "tsc",
"generate-graphql-types": "node ./lib/scripts/generate-graphql-types.js",
"reset-db": "sh lib/scripts/reset-db.sh",
"lint": "yarn lint:prettier && yarn lint:eslint && yarn lint:tsc",
"lint:prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --cache --format stylish",
"lint:tsc": "tsc --noemit",
"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",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\""
},
"dependencies": {
"@apollo/client": "3.6.8",
"@chakra-ui/icons": "1.0.14",
"@chakra-ui/react": "1.6.2",
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"@fontsource/noto-sans": "4.4.5",
"@prisma/client": "3.15.2",
"@types/mime-types": "2.1.1",
"@types/node": "16.7.4",
"@types/nodemailer": "6.4.4",
"@types/react-bootstrap-typeahead": "5.1.7",
"@types/react-helmet": "6.1.2",
"@types/react-table": "7.7.2",
"apollo-server-micro": "2.24.1",
"bootstrap": "5.1.1",
"chakra-ui-steps": "1.1.1",
"csv-writer": "1.6.0",
"formik": "2.2.9",
"framer-motion": "4.1.17",
"graphql": "15.5.0",
"graphql-middleware": "6.1.31",
"graphql-request": "3.6.0",
"mime-types": "2.1.35",
"moment": "2.29.1",
"next": "12.0.3",
"next-auth": "3.26.1",
"next-i18next": "8.3.0",
"next-s3-upload": "0.1.8",
"nodemailer": "6.6.1",
"pdfmake": "0.2.4",
"pino": "8.3.0",
"react": "17.0.2",
"react-bootstrap": "2.0.0-rc.0",
"react-bootstrap-typeahead": "5.2.1",
"react-day-picker": "7.4.10",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-intersection-observer": "8.32.0",
"react-table": "7.7.0",
"typescript": "4.4.2",
"unstated-next": "1.1.0",
"yarn-lockfile": "1.1.1",
"yup": "0.32.11"
},
"devDependencies": {
"@graphql-codegen/add": "2.0.2",
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/typescript": "1.22.0",
"@types/pdfmake": "0.1.21",
"@types/react": "17.0.30",
"@types/react-dom": "17.0.5",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"apollo": "2.33.2",
"csv-parser": "3.0.0",
"eslint": "7.32.0",
"eslint-config-next": "11.0.0",
"eslint-plugin-react": "7.24.0",
"husky": "4.3.8",
"lint-staged": "11.0.0",
"pino-pretty": "8.1.0",
"prettier": "2.3.0",
"prisma": "3.15.2",
"ts-node": "10.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md}": "prettier --write"
},
"prisma": {
"seed": "yarn ts-node prisma/seed.ts"
},
"license": "MIT"
}