-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.25 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": "clare-bee-portfolio",
"version": "1.0.0",
"description": "Portfolio site",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p 3000",
"check-format": "eslint . --ext .js,.jsx,.ts,.tsx",
"fix-format": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"lint-scss": "npx stylelint '**/*.scss'",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run check-format"
}
},
"repository": {
"type": "git",
"url": "git://github.com/ClareBee/p.git"
},
"keywords": [],
"author": "ClareBee",
"license": "ISC",
"dependencies": {
"@next/bundle-analyzer": "^9.1.6",
"@react-pdf/renderer": "^1.6.8",
"cross-env": "^6.0.3",
"gray-matter": "^4.0.2",
"gsap": "^3.2.6",
"imagemin-optipng": "^7.1.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^10.0.9",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.5.4",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-highlight": "^0.14.0",
"react-icons": "^3.8.0",
"react-markdown": "^4.3.0",
"react-responsive": "^8.0.3",
"react-syntax-highlighter": "^12.2.1",
"react-transition-group": "^4.3.0",
"sass": "^1.26.3",
"scrollmagic": "^2.0.7",
"scrollmagic-plugin-gsap": "^1.0.4",
"webp-loader": "^0.6.0"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.16",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"autoprefixer": "^9.7.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"husky": "^4.2.3",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"stylelint": "^13.2.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.14.2",
"typescript": "^3.7.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}