-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.15 KB
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
43
44
45
46
47
48
49
50
51
52
{
"name": "webapi",
"version": "0.2.0",
"description": "API em nodejs",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon ./src/index.js",
"lint": "eslint .",
"build": "node ./docs/scripts/build.js",
"test": "NODE_ENV=test ava"
},
"author": "tglima",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.19.0",
"ava": "^6.2.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"supertest": "^7.0.0"
},
"dependencies": {
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"morgan-body": "^2.6.9",
"sequelize": "^6.37.5",
"sqlite3": "^5.1.7",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"ava": {
"files": [
"__tests__/**/*.js"
],
"extensions": [
"js"
],
"nodeArguments": [
"--experimental-modules"
]
}
}