-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 902 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
{
"name": "uit-ecommerce-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && babel src --out-dir dist --copy-files",
"start": "npm run build && node dist/app.js",
"start:dev": "nodemon --exec babel-node src/app.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/node": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/preset-env": "^7.19.0",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2"
},
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"mongoose": "^6.5.4",
"morgan": "^1.10.0",
"near-api-js": "^1.0.0",
"shortid": "^2.2.16"
}
}