-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"type": "module",
"name": "xtomsk_backend",
"description": "This project was bootstrapped with Fastify-CLI.",
"version": "1.0.0",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap \"test/**/*.test.js\"",
"start": "fastify start -l info app.js",
"dev": "fastify start --watch --ignore-watch='uploads' -l info --verbose-watch -P app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@adminjs/fastify": "^4.0.1",
"@adminjs/mongoose": "^4.0.0",
"@adminjs/upload": "^4.0.0",
"@fastify/autoload": "^5.0.0",
"@fastify/cors": "^8.3.0",
"@fastify/multipart": "^7.7.0",
"@fastify/sensible": "^5.0.0",
"@fastify/session": "^10.4.0",
"@fastify/static": "^6.10.2",
"adminjs": "^7.0.9",
"connect-mongo": "^5.0.0",
"fastify": "^4.19.2",
"fastify-cli": "^5.7.1",
"fastify-multer": "^2.0.3",
"fastify-plugin": "^4.0.0",
"mongoose": "^7.2.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "0.2.0",
"tap": "^16.1.0"
},
"tap": {
"node-arg": [
"--no-warnings",
"--experimental-loader",
"@istanbuljs/esm-loader-hook"
]
}
}