-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.57 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
{
"name": "jvelo.at",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint -- ./",
"validate-typescript": "tsc --noEmit",
"storybook": "start-storybook -p 6006 -s ./public -c .storybook",
"build-storybook": "build-storybook",
"get-schema": "node scripts/get-schema.js",
"migrate-likes": "node scripts/migrate-likes.mjs",
"graphql-codegen": "graphql-codegen",
"update-schema": "yarn get-schema && yarn graphql-codegen"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@apollo/react-ssr": "^3.1.5",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.0.5",
"@tanem/react-nprogress": "3.0.81",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-prismic": "^1.0.7",
"feather-icons": "^4.28.0",
"graphql-tag": "^2.10.3",
"mysql2": "^2.3.3-rc.0",
"next": "12",
"next-absolute-url": "^1.2.2",
"prismic-javascript": "^3.0.0",
"prismic-reactjs": "^1.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-masonry-css": "^1.0.16",
"react-tweet-embed": "^1.3.1",
"rebass": "^4.0.7",
"styled-components": "^5.1.0",
"swr": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
"@graphql-codegen/cli": "^1.15.3",
"@graphql-codegen/fragment-matcher": "^1.15.3",
"@graphql-codegen/typescript": "^1.15.3",
"@next/eslint-plugin-next": "^12.0.3",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@types/feather-icons": "^4.7.0",
"@types/node": "^13.13.5",
"@types/react": "^16.9.35",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-import-graphql": "^2.7.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-react-app": "^9.1.2",
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"eslint-plugin-react": "^7.22.0",
"graphql": "^15.1.0",
"husky": "^4.2.5",
"node-fetch": "^2.6.0",
"postgres": "^3.4.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"twitter-d": "0.4.0",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn run validate-typescript && yarn run lint"
}
}
}