-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 919 Bytes
/
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
{
"name": "thunder-performance-task-manager",
"version": "0.1.0",
"description": "The Thunder performance task manager",
"author": "Mladen Todorovic <[email protected]>",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/thunder/thunder-performance-task-manager.git"
},
"scripts": {
"service": "node app.js",
"worker": "node worker.js",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"ioredis": "^4.16.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1"
},
"devDependencies": {
"dockerode": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.1.0",
"prettier-eslint": "^9.0.1"
}
}