-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 892 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 892 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
37
38
{
"name": "devops-example-app",
"version": "1.0.0",
"description": "devops example app",
"type": "module",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"start": "bin/start.sh"
},
"author": "Hexlet",
"license": "ISC",
"dependencies": {
"@dnlup/fastify-traps": "^2.0.0",
"@fastify/static": "^6.10.2",
"@fastify/view": "^8.0.0",
"bootstrap": "^5.3.0",
"dotenv": "^16.3.1",
"fastify": "^4.19.2",
"fastify-cli": "^5.7.1",
"lodash": "^4.17.21",
"pug": "^3.0.2",
"rollbar": "^2.26.2"
},
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.6.1",
"npm-check-updates": "^16.10.15",
"pino": "^8.14.1",
"pino-pretty": "^10.0.1"
},
"engines": {
"node": "20.x"
}
}