-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 837 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": "ts-playground",
"version": "1.0.0",
"description": "A playground for practicing TypeScript",
"main": "index.js",
"repository": "https://github.com/FutureSeller/ts-playground",
"author": "FutureSeller <[email protected]>",
"license": "MIT",
"scripts": {
"test:data-structures": "jest ./data-structures",
"test:regex-store": "jest ./regex-store",
"test:pattern": "jest ./design-pattern",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.0.1",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}