-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 952 Bytes
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": "back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node ./src/index.js",
"build:clean": "rimraf ./build",
"build:build": "babel src --out-dir ./build --source-maps",
"build": "npm run build:clean && npm run build:build",
"production": "node ./build/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.14.9",
"@babel/register": "^7.14.5",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.2",
"http-errors": "^1.8.0",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"nodemon": "^2.0.12",
"rimraf": "^3.0.2",
"serve-favicon": "^2.5.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}