-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 862 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
30
31
32
{
"name": "ts-challenges",
"version": "0.0.1",
"description": "TypeScript challenges",
"main": "index.js",
"scripts": {
"check-types": "tsc --pretty --noEmit",
"check-all": "yarn check-types src/**/*.ts",
"prepare": "husky install"
},
"author": {
"name": "josenoriega723@gmail.com",
"url": "https://github.com/josenoriegaa"
},
"license": "UNLICENSED",
"repository": {
"url": "https://github.com/JoseNoriegaa/typescript-challenges"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3"
},
"dependencies": {
"@type-challenges/utils": "^0.1.1",
"typescript": "4"
}
}