-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·43 lines (43 loc) · 1.1 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": "teamwork-backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node .",
"test": "nyc jasmine --random=false",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint '**/*.{js,jsx}' --quiet"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^16.1.7",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cloudinary": "^1.16.0",
"datauri": "^2.0.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"pg": "^7.12.1",
"pg-format": "^1.0.4",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"devDependencies": {
"codecov": "^3.6.1",
"dredd": "^12.1.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"jasmine": "^3.5.0",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
}
}