-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.05 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
{
"name": "Portify",
"version": "0.0.1",
"description": "🌐 Get and publish your developer portfolio with just your username",
"keywords": [
"react",
"portfolio",
"nextjs",
"graphql",
"github"
],
"author": "jrgarciadev",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prod": "run-s build start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@apollo/client": "^3.3.7",
"content-type": "^1.0.4",
"graphql": "^15.4.0",
"intersection-observer": "^0.12.0",
"isomorphic-unfetch": "^3.1.0",
"lodash": "^4.17.20",
"mongoose": "^5.11.14",
"next": "10.0.5",
"npm-run-all": "^4.1.5",
"p-iteration": "^1.1.8",
"react": "17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-color": "^2.19.3",
"react-dom": "17.0.1",
"react-hook-form": "^6.15.1",
"react-iconly": "1.1.5",
"react-markdown": "^5.0.3",
"react-tippy": "^1.4.0",
"react-transition-group": "^4.4.1",
"smooth-scroll": "^16.1.3",
"string-similarity": "^4.0.4",
"styled-components": "^5.2.1",
"styled-tools": "^1.7.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"prop-types": "^15.7.2"
}
}