-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "fastify-generic",
"version": "1.0.0",
"private": true,
"description": "Generic Fastify project",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"license": "MIT",
"type": "module",
"scripts": {
"dev": "cross-env APP_ENV=development NODE_ENV=development node --watch ./index.js",
"docs": "apidoc -i ./apis -o ./documentation",
"lint": "eslint",
"start": "cross-env APP_ENV=production NODE_ENV=production node ./index.js",
"test": "cross-env APP_ENV=testing NODE_ENV=development node --test ./"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterdee/fastify-generic"
},
"apidoc": {
"description": "Generic Fastify application",
"sampleUrl": true,
"title": "fastify-generic",
"url": "http://localhost:9999",
"version": "1.0.0"
},
"dependencies": {
"@fastify/cors": "^8.4.2",
"@fastify/formbody": "^7.4.0",
"@fastify/helmet": "^11.1.1",
"@fastify/request-context": "^5.0.0",
"@fastify/static": "^6.12.0",
"cron": "^3.1.6",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"fastify-favicon": "^4.3.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"redis": "^4.6.11",
"scryptwrap": "^2.0.0"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"mongodb-memory-server": "^9.1.3"
}
}