forked from juanrdahl/typescript-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 894 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
29
{
"name": "typescript-workshop",
"version": "2.0.0",
"description": "The purpose of this repository is to analyse how to use some features of Typescript",
"scripts": {
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.2.172",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.5.2",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.1.3",
"prettier": "^2.6.2",
"ts-jest": "^28.0.7",
"typescript": "^4.6.3"
}
}