-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 842 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
36
{
"name": "meal-sharing",
"version": "1.0.0",
"description": "Website for sharing meals",
"engines": {
"node": "8.11.1"
},
"scripts": {
"dev": "npm run server",
"start": "node ./src/backend/index.js",
"server": "nodemon ./src/backend/index.js"
},
"author": "Benjamin Hughes",
"license": "MIT",
"dependencies": {
"@types/xml": "^1.0.3",
"app-root-path": "^2.1.0",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"debug": "~2.6.0",
"dotenv": "^4.0.0",
"express": "^4.16.4",
"express-brute": "^1.0.1",
"express-form-data": "^2.0.1",
"knex": "^0.21.1",
"multer": "^1.3.0",
"mysql2": "^2.1.0",
"path": "^0.12.7",
"serve-favicon": "2.4.5"
},
"devDependencies": {
"nodemon": "^1.12.1",
"sequelize-cli": "^5.4.0"
}
}