-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 2.09 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
{
"name": "portfolio",
"version": "0.0.1",
"description": "personal web dev portfolio using next.js",
"main": "index.js",
"scripts": {
"dev": "clear && next dev",
"git": "git add . && git commit -m",
"build": "NODE_OPTIONS=--openssl-legacy-provider next build",
"start": "next start",
"deploy": "next build && next export",
"bust": "clear && next build && next start",
"bump": "npm --no-git-tag-version version patch",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@jridgewell/set-array": "^1.1.2",
"@mdx-js/loader": "^1.5.7",
"@mdx-js/react": "^1.6.22",
"@mdx-js/runtime": "^1.6.22",
"@next/mdx": "^11.0.1",
"@theme-ui/core": "^0.9.1",
"@theme-ui/css": "^0.9.1",
"@theme-ui/match-media": "^0.9.1",
"@tippyjs/react": "^4.2.5",
"ace-builds": "^1.16.0",
"autoprefixer": "^10.4.17",
"css-loader": "^6.2.0",
"css-to-string-loader": "^0.1.3",
"dotenv": "^10.0.0",
"emotion-icons": "^3.13.0",
"file-loader": "^6.2.0",
"gray-matter": "^4.0.3",
"gsap": "^3.6.1",
"highlight.js": "^11.1.0",
"idb-keyval": "^5.0.6",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.321.0",
"marked": "^2.1.3",
"moment": "^2.29.1",
"next": "^10.2.3",
"next-pwa": "^2.3.0",
"next-transpile-modules": "^7.2.0",
"postcss": "^8.4.33",
"postcss-loader": "^6.1.1",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-ace": "^9.4.1",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.0.0",
"react-html-parser": "^2.0.2",
"react-json-view": "^1.19.1",
"react-redux": "^7.2.4",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"semver": "^7.3.5",
"tailwindcss": "^3.4.1",
"theme-ui": "^0.9.1",
"tippy.js": "^6.3.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^13.9.0",
"@types/react": "^17",
"typescript": "^3.8.3"
},
"engines": {
"node": "20.x"
}
}