-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.94 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
{
"name": "milesmickelson.com",
"version": "1.0.0",
"description": "Personal Portfolio Website",
"main": "index.js",
"scripts": {
"serve": "parcel serve src/index.html",
"dev": "cross-env NODE_ENV=development parcel build src/index.html --no-cache",
"build": "cross-env NODE_ENV=production parcel build src/index.html",
"predeploy": "npm run build",
"deploy": "gh-pages -b master -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/MilesMickelson/MilesMickelson.github.io.git"
},
"author": "Miles Mickelson",
"license": "ISC",
"bugs": {
"url": "https://github.com/MilesMickelson/MilesMickelson.github.io/issues"
},
"homepage": "https://milesmickelson.com",
"postcss": {
"modules": false,
"plugins": {
"autoprefixer": {
"Browserslist config": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"flexbox": "no-2009"
}
}
},
"devDependencies": {
"@types/react": "^16.9.51",
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^2.5.1",
"gh-pages": "^2.2.0",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-nuke-dist": "^1.0.1",
"parcel-plugin-prerender": "^1.4.1",
"sass": "^1.27.0"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@hot-loader/react-dom": "^16.13.0",
"babel-loader": "^8.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.13.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-sticky-el": "^1.1.1"
}
}