forked from jchun765/mySQLReview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 848 Bytes
/
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
{
"name": "mysqlreview",
"version": "1.0.0",
"description": "mySQLReview",
"main": "index.js",
"scripts": {
"build": "webpack -d -w",
"connect": "nodemon ./database/index",
"start": "nodemon ./server/index.js"
},
"keywords": ["mySQL"],
"author": "Jordan Chun",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"html-webpack-plugin": "^4.3.0",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"nodemon": "^2.0.4",
"path": "^0.12.7",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}