-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 KB
/
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
29
30
31
32
33
34
35
36
37
38
{
"name": "edubadges-test",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"check:types": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format-check": "prettier --check .",
"check:all": "npm run check:types && npm run lint && npm run format-check",
"precommit": "npm run check:all && npm run test",
"test": "npx playwright test",
"test:dev": "npx playwright test --ui"
},
"keywords": [],
"author": "",
"license": "GNU AGPL",
"description": "",
"dependencies": {
"dotenv": "^16.4.7",
"playwright": "^1.49.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}