-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.63 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
{
"name": "server",
"version": "1.0.0",
"description": "Teamwork built by using ES6 # Requirements to run * Node.js # Steps to perform in terminal : 1. cd in the project dir and run npm install 2. npm run build 3. npm start 4. open the browser and type localhost:5000 and type endpoint as configured",
"main": "index.js",
"scripts": {
"test": "nyc mocha --require babel-core/register --require babel-polyfill --exit ./Test/index.js",
"build": "babel index.js --out-dir build/ --ignore ./node_modules",
"start": "nodemon --require babel-core/register --require babel-polyfill ./index.js"
},
"keywords": [],
"author": "Mistico Clement",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-watch": "^7.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"bcrypt": "^3.0.6",
"core-util-is": "^1.0.2",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"swagger-ui-express": "^4.1.2",
"uuid": "^3.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niyodusengaclement/teamwork.git"
},
"bugs": {
"url": "https://github.com/niyodusengaclement/teamwork/issues"
},
"homepage": "https://github.com/niyodusengaclement/teamwork#readme"
}