-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
77 lines (77 loc) · 2.16 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "fastify-app-example",
"private": true,
"version": "1.0.0",
"description": "",
"main": "app.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "standard && tap test/**/*.test.js",
"start": "fastify start -l info app.js",
"dev": "npm run build && fastify start -w -l info -P app.js",
"build": "rollup -c",
"elasticsearch": "./scripts/elasticsearch.sh"
},
"keywords": [],
"author": "Tomas Della Vedova",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/delvedor/fastify-example.git"
},
"bugs": {
"url": "https://github.com/delvedor/fastify-example/issues"
},
"homepage": "https://github.com/delvedor/fastify-example#readme",
"dependencies": {
"@elastic/elasticsearch": "^8.5.0",
"@fastify/autoload": "^5.4.1",
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.1.1",
"@fastify/csrf-protection": "^6.0.0",
"@fastify/env": "^4.1.0",
"@fastify/helmet": "^10.0.2",
"@fastify/oauth2": "^6.1.0",
"@fastify/rate-limit": "^7.5.0",
"@fastify/sensible": "^5.1.1",
"@fastify/static": "^6.5.0",
"@fastify/swagger": "^8.1.0",
"@fastify/swagger-ui": "^1.2.0",
"@fastify/under-pressure": "^8.1.0",
"desm": "^1.3.0",
"fastify": "^4.9.2",
"fastify-cli": "^5.5.1",
"fastify-piscina": "^4.0.0",
"fastify-plugin": "^4.3.0",
"fluent-json-schema": "^4.0.0",
"readable-stream": "^4.2.0",
"svelte": "^3.52.0",
"undici": "^5.12.0"
},
"devDependencies": {
"@beyonk/svelte-notifications": "^4.2.0",
"@elastic/elasticsearch-mock": "^2.0.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"cookie-signature": "^1.2.0",
"crypto-random-string": "^3.3.0",
"rollup": "^2.38.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"standard": "^17.0.0",
"svelte-spa-router": "^3.3.0",
"tap": "^16.3.0"
},
"tap": {
"ts": false,
"jsx": false,
"flow": false,
"coverage": false,
"jobs-auto": true
}
}