-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "mvp-stater-kit",
"scripts": {
"build:client-dev": "webpack --config webpack.config.js --mode development --watch",
"build:client": "webpack --config webpack.config.js --mode development",
"start": "node server/index.js",
"lint": "eslint . --ext .js,.jsx"
},
"author": "Beth Johnson",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.17.2",
"express": "^4.16.4",
"kayn": "^0.10.2",
"lol-champions": "^8.11.0",
"mysql": "^2.13.0",
"mysql2": "^1.7.0",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"sequelize": "^5.21.1"
}
}