-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 937 Bytes
/
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
{
"name": "express-typescript",
"version": "1.0.0",
"license": "MIT",
"main": "index.js",
"type": "commonjs",
"scripts": {
"dev": "nodemon index.js",
"build": "yarn && tsc",
"start": "node index.js",
"format": "npx prettier --write .",
"start-localhost": "next start"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"husky": "^8.0.3",
"nodemon": "^2.0.19",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"flutterwave-node-v3": "^1.1.6",
"module-alias": "^2.2.3",
"web3bridgemodels": "^0.0.2"
},
"engines": {
"node": ">=14.17.0"
}
}