-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 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
{
"name": "md-notes-api",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --watch --env-file .env src/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:staged": "vitest run src/test/unit/*.unit.test.js --passWithNoTests",
"test:unit": "vitest run src/test/unit/*.unit.test.js",
"test:unit:watch": "vitest --watch src/**/test/unit/*.unit.test.js",
"test:integration": "vitest run src/**/test/integration/*.integration.test.js",
"test:integration:watch": "vitest --watch src/**/test/integration/*.integration.test.js",
"test:e2e": "vitest run src/**/test/e2e/*.e2e.test.js",
"test:e2e:watch": "vitest --watch src/**/test/e2e/*.e2e.test.js",
"prepare": "husky"
},
"keywords": [],
"author": "Antonio Mauricio",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"globals": "^15.8.0",
"husky": "^9.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"vitest": "^2.0.4"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"octokit": "^4.0.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"valibot": "^0.36.0"
}
}