-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "matt-o-portfolio",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn prettier && yarn eslint",
"eslint": "next lint --fix --dir src",
"prettier": "prettier --list-different \"./src/**/*.{ts,tsx,md}\"",
"export": "EXPORT=true next build && EXPORT=true next export",
"analyze": "ANALYZE=true next build",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@mdx-js/loader": "^2.0.0",
"@next/mdx": "^12.0.10",
"@react-spring/three": "^9.3.1",
"@react-three/drei": "^8.0.0",
"@react-three/fiber": "^7.0.21",
"@sendgrid/mail": "^7.6.0",
"@types/three": "^0.135.0",
"drei": "^2.2.21",
"formik": "^2.2.9",
"framer-motion": "^5.4.5",
"next": "12.0.7",
"postprocessing": "^6.23.5",
"pure-react-carousel": "^1.27.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intersection-observer": "^8.33.0",
"react-spring": "^9.3.2",
"react-syntax-highlighter": "^15.4.5",
"smoothscroll-polyfill": "^0.4.4",
"styled-components": "^5.3.3",
"three": "^0.135.0",
"three-stdlib": "^2.6.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@next/bundle-analyzer": "^12.0.7",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.12",
"@types/react": "17.0.37",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/styled-components": "^5.1.17",
"babel-plugin-glsl": "^1.0.0",
"babel-plugin-styled-components": "^2.0.2",
"customize-cra-react-refresh": "^1.1.0",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"file-loader": "^6.2.0",
"gray-matter": "^4.0.3",
"jest": "^27.4.7",
"msw": "^0.36.4",
"next-compose-plugins": "^2.2.1",
"next-mdx-remote": "^3.0.8",
"next-offline": "^5.0.5",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "4.5.2",
"typescript-plugin-styled-components": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.64.4",
"whatwg-fetch": "^3.6.2"
}
}