-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
44
45
46
47
48
49
50
{
"name": "bankapp",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js --exec babel-node"
},
"author": "maruf",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.13.8",
"babel-core": "^7.0.0-bridge.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"idempotent-babel-polyfill": "^7.4.4",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"sequelize": "^6.5.0",
"swagger-ui-express": "^4.1.6",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
},
"devDependencies": {
"babel-loader": "^8.2.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.3.3",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"supertest": "^6.1.3"
}
}