-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 902 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
{
"name": "js-backend-starter",
"version": "1.0.0",
"description": "My own personal starter template for Javascript backend projects",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"start:dev": "node --watch src/index.js",
"start:prod": "node src/index.js",
"test": "vitest",
"test:ci": "vitest --run"
},
"author": "Rogerio Romao",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-unicorn": "^55.0.0",
"vitest": "^2.1.1"
}
}