generated from CodelyTV/typescript-basic-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
59 lines (59 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "awesome-typescript-examples",
"license": "GPL-3.0",
"version": "1.0.0",
"author": "codelytv",
"description": "✨ Awesome TypeScript Examples with complete show cases of how to take advantage of the language potential.",
"keywords": [
"typescript",
"eslint",
"examples",
"dependency-injection",
"decorators",
"generics",
"enums",
"any",
"unknown",
"exhaustiveness-checking",
"utility-types",
"typescript-example",
"typescript-examples"
],
"homepage": "https://github.com/CodelyTV/awesome-typescript-examples#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CodelyTV/awesome-typescript-examples.git"
},
"bugs": {
"url": "https://github.com/CodelyTV/awesome-typescript-examples/issues"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@swc/core": "^1.2.172",
"@swc/jest": "^0.2.20",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.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.0.1",
"prettier": "^2.6.2",
"typescript": "^5.1.6"
},
"dependencies": {
"diod": "^1.0.2",
"express": "^4.18.1",
"reflect-metadata": "^0.1.13",
"zustand": "3.4.2"
}
}