-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "My personal portfolio website",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "next",
"build": "next build && next export -o docs",
"export": "next export -o docs",
"deploy": "next build && next export -o docs && git add . && git commit -m 'build' && git push origin master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anurag1299/Portfolio.git"
},
"keywords": [],
"author": "Anurag More",
"license": "MIT",
"bugs": {
"url": "https://github.com/anurag1299/Portfolio/issues"
},
"dependencies": {
"animejs": "^3.2.0",
"express": "^4.17.1",
"gray-matter": "^4.0.2",
"next": "^9.4.0",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-markdown": "^4.3.1",
"react-reveal": "^1.2.2",
"react-transition-group": "^4.4.1",
"recursive-readdir": "^2.2.2",
"remark": "^12.0.0",
"remark-html": "^11.0.2",
"smooth-scroll": "^16.1.3",
"styled-components": "^4.0.0"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.7",
"file-loader": "^6.0.0"
}
}