-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.36 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": "marathon-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": "14.17.0",
"npm": "^6.14"
},
"scripts": {
"dev": "concurrently -n next,codegen -c green,cyan \"next dev\" \"npm run graphql:codegen-watch\"",
"build": "next build",
"start": "next start",
"serve": "next start -p $PORT",
"lint": "next lint --fix",
"prepare": "husky install",
"graphql:codegen": "cross-env DOTENV_CONFIG_PATH=./.env.local graphql-codegen -r dotenv/config --config codegen.yml",
"graphql:codegen-watch": "npm run graphql:codegen -- --watch src/apollo/**/*"
},
"dependencies": {
"@apollo/client": "^3.4.16",
"@formatjs/intl-numberformat": "^7.2.5",
"@formatjs/intl-pluralrules": "^4.1.5",
"@fortawesome/fontawesome-svg-core": "^1.3.0-beta2",
"@fortawesome/free-brands-svg-icons": "^6.0.0-beta2",
"@fortawesome/free-regular-svg-icons": "^6.0.0-beta2",
"@fortawesome/free-solid-svg-icons": "^6.0.0-beta2",
"@fortawesome/react-fontawesome": "^0.1.16",
"@graphql-codegen/cli": "2.2.1",
"@graphql-codegen/introspection": "^2.1.0",
"@graphql-codegen/typescript": "2.2.4",
"@graphql-codegen/typescript-operations": "2.1.8",
"@graphql-codegen/typescript-react-apollo": "3.1.6",
"@sentry/nextjs": "^6.15.0",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/line-clamp": "^0.2.2",
"@tailwindcss/typography": "^0.4.1",
"@tippyjs/react": "^4.2.6",
"@types/classnames": "^2.3.1",
"@types/flat": "^5.0.2",
"@types/js-cookie": "^3.0.0",
"@types/lodash": "^4.14.176",
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.15",
"@types/yup": "^0.29.13",
"autoprefixer": "^10.3.7",
"classnames": "^2.3.1",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"csstype": "^3.0.9",
"dayjs": "^1.10.7",
"deepmerge": "^4.2.2",
"flat": "^5.0.2",
"formik": "^2.2.9",
"framer-motion": "^5.0.0",
"graphql": "^15.7.1",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"nanoid": "^3.1.30",
"next": "12.0.7",
"next-cookies": "^2.0.3",
"postcss": "^8.3.11",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-combine-media-query": "^1.0.1",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.6",
"querystring": "^0.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-intl": "^5.21.0",
"styled-components": "^5.3.3",
"tailwindcss": "^2.2.17",
"typescript": "4.4.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@next/eslint-plugin-next": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"eslint": "^7.32.0",
"eslint-config-next": "12.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-stylelint": "^14.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tailwind": "^0.2.1",
"eslint-plugin-tsc": "^2.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"stylelint": "^14.0.1",
"stylelint-config-standard": "^23.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-order": "^5.0.0",
"stylelint-processor-styled-components": "^1.10.0"
}
}