-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
77 lines (77 loc) · 2.52 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:server": "next dev",
"dev:codegen-watch": "DOTENV_CONFIG_PATH=./.env.local graphql-codegen --config codegen.yml -r dotenv/config",
"build": "next build",
"start": "next start",
"lint:style": "eslint . --ext=.js,.ts,.tsx --fix",
"lint:types": "tsc --noemit",
"lint:unused-exports": "./node_modules/.bin/ts-unused-exports tsconfig.json --allowUnusedTypes --excludePathsFromReport='src/pages;src/__generated__'",
"lint": "run-p lint:*"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.3",
"@chakra-ui/react": "^1.1.5",
"@chakra-ui/theme": "^2.1.8",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@graphcms/rich-text-react-renderer": "^0.4.2",
"@graphcms/utils": "^1.1.0",
"@laurabeatris/chakra-ui-flashless": "^0.2.11",
"@microlink/mql": "^0.10.28",
"axios": "^0.27.2",
"file-loader": "^6.2.0",
"framer-motion": "^3.2.2-rc.1",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"hex-to-rgba": "^2.0.1",
"lodash.union": "^4.6.0",
"lodash.uniq": "^4.5.0",
"luxon": "^1.26.0",
"next": "^12.3.1",
"next-query-params": "^4.0.0",
"next-seo": "^4.17.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "^4.1.0",
"swr": "^1.3.0",
"twitter-api-v2": "^1.12.5",
"use-debounce": "^6.0.0",
"use-lilius": "^2.0.3",
"use-query-params": "^2.1.0",
"use-sound": "^2.0.1"
},
"devDependencies": {
"@graphcms/rich-text-types": "^0.3.1",
"@graphql-codegen/cli": "2.12.0",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"babel-eslint": "^10.1.0",
"dotenv": "^16.0.2",
"eslint": "^7.5.0",
"eslint-config-next": "^12.3.1",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"globby": "^11.0.2",
"husky": "^4.3.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-unused-exports": "^8.0.0",
"typescript": "^4.8.3"
}
}