forked from morganjunlin/mysql-review
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 826 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 826 Bytes
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
{
"name": "mysql-review",
"version": "1.0.0",
"description": "MySQL Review",
"main": "index.js",
"scripts": {
"build": "webpack -d -w",
"start": "nodemon",
"dev:server": "nodemon ./server/index.js"
},
"author": "Morgan Lin",
"license": "ISC",
"homepage": "https://github.com/morganjunlin/mysql-review#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.23.0",
"webpack": "^2.2.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.15.0",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"mysql2": "^1.7.0",
"nodemon": "^1.19.2",
"path": "^0.12.7",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"sequelize": "^5.19.0"
}
}