-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.89 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
{
"homepage": "https://github.com/nucle0tides/website#readme",
"name": "gabbyortman.com",
"version": "1.0.0",
"description": "a new website, but with react",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --mode production",
"dev": "NODE_ENV=development webpack-dev-server --mode development --progress",
"copy:CNAME": "cp ./CNAME ./dist/CNAME",
"copy:KEYBASE": "cp ./keybase.txt ./dist/keybase.txt",
"copy": "npm run copy:CNAME && npm run copy:KEYBASE",
"predeploy": "npm run copy && npm run build",
"deploy": "NODE_ENV=production NODE_DEBUG=gh-pages gh-pages -d ./dist",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nucle0tides/website.git"
},
"author": "gabby ortman",
"license": "ISC",
"bugs": {
"url": "https://github.com/nucle0tides/gabbyortman.com/issues"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"css-loader": "^4.0.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^6.0.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.3.0",
"js-beautify": "^1.11.0",
"node-sass": "^4.14.1",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1"
}
}