-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 939 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 939 Bytes
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
{
"name": "progress-report",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest",
"test-coverage": "jest --coverage",
"lint": "eslint src",
"prettier": "prettier --write \"**/*.js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"arango-tools": "^0.6.0",
"dotenv-safe": "^8.2.0",
"notifications-node-client": "^8.2.1",
"pino": "^10.3.1"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jest-matcher-utils": "^29.5.0",
"pino-pretty": "^13.1.3",
"prettier": "^2.8.8"
}
}