-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 796 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 796 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
{
"name": "node_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node --presets es2015 server.js",
"test-dev": "mocha -require babel-register --recursive --reporter spec --timeout 60000 --exit"
},
"author": "Jonathan Tejedera",
"license": "ISC",
"dependencies": {
"async": "^3.2.0",
"axios": "^0.19.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.0.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.4"
}
}