-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.39 KB
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": "jmahc.github.io",
"version": "0.2.0",
"author": "Jordan McArdle <jordan@mcardle.tech> (https://mcardle.tech/)",
"description": "Portfolio site for me.",
"homepage": "https://mcardle.tech",
"scripts": {
"build": "next build && next export",
"clean": "rm -rf node_modules/.cache && rm -rf out",
"clean:cache": "rm -rf node_modules/.cache",
"clean:out": "rm -rf out",
"dev": "next",
"predeploy": "./scripts/deploy.sh",
"deploy": "gh-pages -b master -d out",
"export": "next export",
"precommit": "lint-staged",
"start": "next start"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.1",
"next": "^9.4.4",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"tailwindcss": "^1.4.6"
},
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettier-standard": "^16.4.1"
}
}