-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "ierg4350_backend",
"version": "1.0.0",
"description": "IERG4350-project (backend)",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon --inspect index.js",
"test": "tap --reporter=list --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinyiwsy/IERG4350_backend.git"
},
"engineStrict": true,
"engines": {
"node": "~14.16"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.15.0",
"bcrypt": "^5.0.1",
"desm": "^1.1.0",
"fastify": "^3.15.1",
"fastify-auth": "^1.1.0",
"fastify-autoload": "^3.7.1",
"fastify-cli": "^2.10.0",
"fastify-cors": "^6.0.0",
"fastify-csrf": "^3.0.1",
"fastify-env": "^2.1.0",
"fastify-jwt": "^2.4.0",
"fastify-oauth2": "^4.2.1",
"fastify-raw-body": "^3.1.0",
"fastify-routes": "^3.0.1",
"fastify-sensible": "^3.1.1",
"fastify-swagger": "^4.7.0",
"fluent-json-schema": "^2.0.4",
"make-promises-safe": "^5.1.0",
"mysql": "^2.18.1",
"nodemon": "^2.0.7",
"reflect-metadata": "^0.1.13",
"simple-get": "^4.0.0",
"stripe": "^8.148.0",
"typeorm": "^0.2.32",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"pino-pretty": "^4.7.1",
"prettier": "2.2.1",
"tap": "^15.0.6"
}
}