-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 952 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
{
"name": "decentramall-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/decentramall/decentramall-backend.git",
"author": "Eason Chai <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.20.0",
"celebrate": "^13.0.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"morgan": "^1.10.0",
"pg": "^8.3.3",
"pg-hstore": "^2.3.3",
"pg-native": "^3.0.0",
"sequelize": "^6.3.5",
"winston": "^3.3.3"
},
"scripts": {
"start": "nodemon src/app.ts",
"serve": "node dist/app.js",
"build": "tsc -p .",
"postinstall": "yarn build"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.1",
"@types/pg": "^7.14.5",
"nodemon": "^2.0.4",
"sequelize-cli": "^6.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}