forked from okcoders/express-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 680 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 680 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
{
"name": "express-template",
"version": "0.0.0",
"scripts": {
"serve": "node ./dist/index",
"transpile": "babel ./server --out-dir dist",
"clean": "rimraf dist",
"build": "npm run clean && npm run transpile",
"reload": "npm run build && npm run serve",
"start": "npx nodemon --exec npm run reload"
},
"dependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"cors": "^2.8.5",
"express": "~4.16.1",
"mongoose": "^6.5.0",
"rimraf": "^3.0.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"nodemonConfig": {
"ignore": [
"dist"
]
}
}