-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 994 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
{
"name": "scaffolding-management",
"version": "1.0.0",
"description": "This app should provide basic functionalities to manage a very specific scaffolding business. The functionality basically includes:",
"main": "index.js",
"scripts": {
"format": "npm run test:lint -- --fix && prettier --write tests/",
"test:lint": "eslint tests --ext .js,.ts --ignore-path .gitignore",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test": "npm run test:unit && npm run test:lint && npm run test:e2e"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.45.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@types/node": "^20.14.9",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"glob": "^10.4.2",
"prettier": "^3.3.2",
"vitest": "^1.6.0"
}
}