-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 937 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "api-simple",
"version": "1.0.0",
"description": "",
"main": "node_modules/.bin/nodemon --exec babel-node src/server.js",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"encoding": "^0.1.13",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-yup-middleware": "^1.2.3",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"pino": "^8.17.2",
"yup": "^1.3.3"
},
"scripts": {
"start": "node_modules/.bin/nodemon --exec babel-node src/server.js",
"test": "ava"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.24.5",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.6",
"@babel/register": "^7.23.7",
"ava": "^6.0.1",
"nodemon": "^3.0.2"
},
"keywords": [
"Express",
"JS"
],
"author": "",
"license": "ISC",
"ava": {
"require": [
"@babel/register"
]
}
}