-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 831 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 831 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
35
{
"name": "bootcampNode",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./index.js",
"start": "concurrently \"npm run dev \" \"npm run watch\"",
"watch": "webpack --w --mode development"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"concurrently": "^4.1.1",
"express": "^4.17.1",
"express-validator": "^6.0.1",
"mysql2": "^1.6.5",
"pug": "^2.0.4",
"sequelize": "^5.8.11",
"shortid": "^2.2.14",
"slug": "^1.1.0",
"sweetalert2": "^8.13.3"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.2",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.6",
"nodemon": "^1.19.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
}
}