-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "clara",
"version": "1.0.0",
"description": "Bundles",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"build-ts": "tsc -p .",
"test": "cp -n .env.example .env && npm run build-ts && tap ./dist/test/**/*.test.js",
"start": "cp -n .env.example .env && npm run seed && node ./dist/server.js",
"lint": "eslint . --ext .ts",
"seed": "npm run build-ts && node ./dist/commands/SeedDb.js"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/SamSalvatico/clara.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/SamSalvatico/clara/issues"
},
"homepage": "/~https://github.com/SamSalvatico/clara#readme",
"dependencies": {
"dotenv": "^8.2.0",
"fastify": "^3.0.0",
"fastify-autoload": "^3.0.2",
"fastify-cli": "^2.5.1",
"fastify-cors": "^5.0.0",
"fastify-mongodb": "^2.0.1",
"fastify-plugin": "^3.0.0",
"fastify-redis": "^4.0.3",
"fastify-swagger": "^3.5.0",
"mongodb": "^3.6.3",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1",
"tap": "^14.11.0"
},
"devDependencies": {
"@types/eslint": "^7.2.5",
"@types/mongodb": "^3.5.33",
"@types/node": "^14.14.7",
"@types/node-cache": "^4.2.5",
"@types/node-fetch": "^2.5.7",
"@types/tap": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"pino-pretty": "^4.3.0",
"typescript": "^4.0.5"
}
}