-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "wiki-analyzer-statistic-delivery-service",
"version": "1.0.0",
"description": "Service for wiki statistic delivery",
"main": "app.js",
"scripts": {
"start": "node server.js",
"lint": "eslint --ignore-path .gitignore \"**/*.js\"",
"fmt": "prettier --ignore-path .gitignore --write \"**/*.js\"",
"test": "jest --runInBand --verbose .tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meta-coders/wiki-analyzer-statistic-delivery-service.git"
},
"author": "mille-nium <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/meta-coders/wiki-analyzer-statistic-delivery-service/issues"
},
"homepage": "https://github.com/meta-coders/wiki-analyzer-statistic-delivery-service#readme",
"jest": {
"testEnvironment": "node",
"globalSetup": "./__tests__/utils/setup.js"
},
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"dependencies": {
"dotenv": "^8.2.0",
"fastify": "^3.9.2",
"fastify-autoload": "^3.4.0",
"fastify-cors": "^5.1.0",
"fastify-plugin": "^3.0.0",
"fastify-postgres": "^3.3.0",
"fastify-swagger": "^3.5.0",
"joi": "^17.3.0",
"pg": "^8.5.1"
}
}