-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "cmpaas_backend",
"version": "0.0.1",
"description": "CMPaaS Official Backend Services",
"main": "server.js",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx watch ./src/server.ts",
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "node ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CMPaaSProject/CMPaaS_Backend.git"
},
"keywords": [
"CMPaaS",
"webservices",
"ConceptMap",
"fastify"
],
"author": "Wagner de Andrade Perin",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/CMPaaSProject/CMPaaS_Backend/issues"
},
"homepage": "https://github.com/CMPaaSProject/CMPaaS_Backend#readme",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/mongodb": "^8.0.0",
"@fastify/type-provider-typebox": "^4.0.0",
"@sinclair/typebox": "^0.32.0",
"@types/node": "^20.10.5",
"close-with-grace": "^1.2.0",
"desm": "^1.3.0",
"dotenv": "^16.4.1",
"fastify": "^4.25.1",
"fastify-autoload": "^3.13.0",
"fastify-plugin": "^4.5.1",
"pino-pretty": "^10.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}