forked from Cachuloxy/c3-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 861 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
{
"name": "rest_api_basic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"build": "babel src --out-dir dist --copy-files",
"start": "babel src --out-dir dist --copy-files && node dist/index.js",
"start:dev": "nodemon --exec babel-node src/index.js"
},
"author": "Francisco Cabezas",
"license": "ISC",
"dependencies": {
"jest": "^28.1.0",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-router": "^10.1.1",
"sinon": "^14.0.0",
"supertest": "^6.2.3"
},
"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"
}
}