-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "portfoliov2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next 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.2.2",
"animejs": "^3.2.1",
"graphql": "^15.3.0",
"intersection-observer": "^0.11.0",
"next": "^11.1.2",
"react": "17.0.0",
"react-dom": "17.0.0",
"react-transition-group": "^4.4.1",
"scrollreveal": "^4.0.7",
"smooth-scroll": "^16.1.3",
"styled-components": "^5.2.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"prop-types": "^15.7.2"
}
}