-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.69 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "url-shortener",
"version": "1.0.0",
"main": "src/server.js",
"tap": {
"check-coverage": false
},
"standard": {
"globals": [
"AbortController",
"after",
"afterEach",
"Cypress",
"before",
"beforeEach",
"expect",
"describe",
"it",
"test",
"FileReader",
"DataTransfer",
"File",
"cy",
"jest"
]
},
"scripts": {
"start": "NODE_ENV=production node src/server.js",
"dev": "NODE_ENV=development nodemon src/server.js",
"start-ci": "NODE_ENV=test node src/server.js",
"cypress:open": "cypress open",
"test": "tap",
"posttest": "tap --coverage-report=html --no-browser",
"delete": "rm -rf node_modules/ && rm package-lock.json",
"lint": "standard",
"fix-lint": "standard --fix",
"prepare": "husky install"
},
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/formbody": "^7.3.0",
"@fastify/helmet": "^10.1.0",
"@fastify/jwt": "^6.4.0",
"@fastify/multipart": "^7.4.1",
"@fastify/postgres": "^5.1.0",
"@fastify/rate-limit": "^7.6.0",
"@fastify/static": "^6.5.0",
"@fastify/swagger": "^8.0.0",
"@fastify/view": "^7.1.1",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"fastify": "^4.9.1",
"fastify-plugin": "^4.3.0",
"fastify-supabase": "^1.2.1",
"handlebars": "^4.7.7",
"husky": "^8.0.1",
"node-fetch": "^3.3.0",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"postgrator": "^5.0.1",
"standard": "^17.0.0",
"uuid": "^9.0.0",
"warehouse": "^4.0.2"
},
"devDependencies": {
"pino-pretty": "^9.1.1",
"cypress": "^12.8.1",
"npm-run-all": "^4.1.5",
"tap": "^16.3.4"
}
}