-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 KB
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": "checklistsl-api",
"version": "1.0.0",
"description": "Web api for CheckListSL application",
"main": "src/server.js",
"scripts": {
"start": "pm2 start src/server.js",
"dev": "npx supervisor src/server.js",
"test": "node tests/jasmine.js"
},
"keywords": [
"checklist",
"translator"
],
"author": "Andrei Surzhan",
"license": "ISC",
"dependencies": {
"@google-cloud/translate": "^6.2.6",
"bcrypt-nodejs": "0.0.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.4",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"request": "^2.85.0",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.3",
"winston": "^2.4.1"
},
"devDependencies": {
"jasmine": "^3.1.0",
"jasmine-spec-reporter": "^2.7.0"
}
}