-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 KB
/
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
{
"name": "rest_api_basic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf src && babel src --out-dir dist --copy-files",
"start": "node src/index.js",
"start:dev": "nodemon --exec babel-node src/index.js",
"start:promise": "nodemon --exec babel-node src/promise.js",
"start:user_search_promise": "nodemon --exec babel-node src/user_search_promise.js",
"start:async_await": "nodemon --exec babel-node src/asyncAwait.js",
"start:promise_all": "nodemon --exec babel-node src/promise_all.js"
},
"author": "Francisco Cabezas",
"license": "ISC",
"dependencies": {
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-router": "^10.1.1"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2"
}
}