-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 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
46
47
48
49
{
"name": "blog-posts",
"version": "1.1.1",
"description": "A Discord APP built with Fastify!",
"main": "lib/app.js",
"access": "private",
"type": "module",
"scripts": {
"start": "node lib/start.mjs",
"start:dev": "nodemon lib/start.mjs",
"lint:fix": "standard --fix",
"local:mongo": "docker run -d -p 27017:27017 --rm --name mongoLocal mongo:4.2",
"local:mongo:stop": "docker container stop mongoLocal",
"test": "tap test/**/*.test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/blog-posts.git"
},
"keywords": [],
"author": "Manuel Spigolon <[email protected]> (https://github.com/Eomm)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eomm/blog-posts/issues"
},
"homepage": "https://github.com/Eomm/blog-posts#readme",
"dependencies": {
"casual": "^1.6.2",
"dotenv": "^7.0.0",
"fastify": "^3.8.0",
"fastify-caching": "^6.0.1",
"fastify-cookie": "^4.1.0",
"fastify-env": "^2.1.0",
"fastify-helmet": "^5.0.3",
"fastify-mongodb": "^2.0.1",
"fastify-oauth2": "^4.2.1",
"fastify-server-session": "^4.0.0",
"fastify-static": "^3.3.0",
"got": "^11.8.0",
"handlebars": "^4.7.6",
"point-of-view": "^4.6.0"
},
"devDependencies": {
"nock": "^13.0.4",
"nodemon": "^2.0.6",
"standard": "^14.3.4",
"tap": "^14.10.8"
}
}