-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"name": "mizu-js-test-smell-detector-api",
"version": "1.0.0",
"description": "a js test smell detector api",
"main": "server.js",
"author": "jhonatanmizu",
"license": "MIT",
"scripts": {
"start": "pm2 start process.yml -i max -f --no-daemon",
"start:dev": "node --watch src/server.js",
"lint": "yarn run eslint src/*",
"test": "vitest run --config ./vitest.config.js test/",
"test:watch": "vitest --config ./vitest.config.js test/",
"test:coverage": "vitest run --config ./vitest.config.js --coverage test/"
},
"type": "module",
"dependencies": {
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.4",
"@babel/types": "^7.27.3",
"@fastify/cors": "^11.0.0",
"@fastify/helmet": "^12.0.1",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.2",
"@json2csv/plainjs": "^7.0.6",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"fastify": "^5.3.3",
"glob": "^11.0.0",
"pino-pretty": "^13.0.0",
"pm2": "^5.4.3",
"rimraf": "^6.0.1"
},
"repository": "https://github.com/Jhonatanmizu/snutsjs.git",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "9.x",
"git-commit-msg-linter": "^5.0.8",
"globals": "^16.2.0",
"vitest": "^2.0.5"
}
}