-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3.1 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
{
"name": "with-typescript",
"version": "1.0.0",
"engines": {
"node": "14.17.0"
},
"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",
"@emotion/styled": "11",
"@fontsource/noto-sans": "^4.4.5",
"@prisma/client": "^2.28.0",
"@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",
"graphql": "^15.5.0",
"graphql-middleware": "^6.1.31",
"mime-types": "^2.1.35",
"moment": "^2.29.3",
"next": "12",
"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",
"shopify-buy": "^2.20.0",
"typescript": "^4.4.2",
"unstated-next": "^1.1.0",
"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.2",
"@types/react-dom": "^17.0.1",
"@types/shopify-buy": "^2.10.9",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"apollo": "^2.33.2",
"csv-parser": "^3.0.0",
"eslint": "^7.26.0",
"eslint-config-next": "^11.0.0",
"eslint-plugin-react": "^7.23.2",
"husky": "4",
"lint-staged": "^11.0.0",
"pino-pretty": "^8.1.0",
"prettier": "^2.3.0",
"prisma": "^2.28.0",
"ts-node": "^10.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md}": "prettier --write"
},
"license": "MIT"
}