-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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
37
38
39
40
41
42
43
{
"name": "backend",
"version": "1.0.0",
"description": "Backend for Employee Directory",
"main": "server.js",
"scripts": {
"dev": "nodemon --exec babel-node ./api/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "pascalachkar",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.7.0",
"mocha": "^8.2.1",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"nyc": "^15.1.0",
"path": "^0.12.7",
"sequelize": "^6.3.5",
"swagger-jsdoc": "^5.0.1",
"swagger-ui-express": "^4.1.5",
"tree-md-cli": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/node": "^7.12.6",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"@babel/runtime": "^7.12.5",
"babel-loader": "^8.2.1",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
}
}