-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "my-brand",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:elvisiraguha/my-brand.git",
"author": "elvisiraguha <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"babel-jest": "^26.3.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.28",
"nodemon": "^2.0.4",
"prismjs": "^1.21.0",
"swagger-ui-express": "^4.1.4"
},
"scripts": {
"prestart": "babel Server -d dist",
"start": "node dist/server.js",
"start:dev": "nodemon --exec babel-node Server/server.js",
"test": "jest --config --coverage --detectOpenHandles --forceExit",
"posttest": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"coveralls": "^3.1.0",
"jest": "^26.3.0",
"supertest": "^4.0.2"
}
}