-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
39
40
{
"name": "typescript-package",
"version": "0.0.0",
"description": "typescript package",
"main": "index.js",
"repository": "[email protected]:viqueen/typescript-package.git",
"author": "Hasnae R. <>",
"license": "Apache-2.0",
"private": true,
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"format:check": "prettier --check .",
"format": "prettier --check --write .",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@labset-eslint/eslint-plugin": "^1.2.0",
"@types/jest": "^29.5.1",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"globals": "^15.14.0",
"jest": "^29.5.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}