-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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": "kevhender-net",
"version": "1.0.0",
"description": "Kevin Henderson's personal website",
"main": "server.js",
"scripts": {
"debug": "node server-debug.js",
"compile": "webpack",
"build": "webpack -p",
"start": "node server.js",
"lint": "eslint *.js src",
"heroku-postbuild": "echo Skip build on Heroku"
},
"keywords": [
"kevhender"
],
"engines": {
"node": "8.14.0"
},
"author": "Kevin Henderson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kevhender/kevhender.net.git"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/plugin-transform-async-to-generator": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"babel-loader": "^8.2.3",
"body-parser": "^1.19.0",
"classnames": "^2.3.1",
"compression": "^1.7.4",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"mailgun-js": "^0.22.0",
"mobx": "^5.15.7",
"mobx-react": "^5.4.4",
"mobx-state-tree": "^3.17.3",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^3.1.3",
"react-svg-loader": "^2.1.0",
"react-swipeable-views": "^0.13.9",
"react-visibility-sensor": "^5.1.1",
"webpack": "4.2.0",
"webpack-dev-middleware": "^3.7.3",
"webpack-hot-middleware": "^2.25.1"
},
"devDependencies": {
"babel-preset-minify": "^0.5.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-moov": "^1.1.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"webpack-cli": "^3.3.12"
},
"heroku-run-build-script": true
}