-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "bellshade-typescript",
"version": "1.0.0",
"description": "Tutorial Typescript berbahasa Indonesia",
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"tl": "npm test && npm run lint",
"run": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bellshade/TypescriptAlgorithm.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bellshade/Typescript/issues"
},
"homepage": "https://github.com/bellshade/Typescript#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-jest": "^27.2.4",
"eslint": "^7.32.0",
"jest": "^27.2.4",
"readline-sync": "^1.4.10",
"ts-node": "^10.2.1"
},
"dependencies": {
"typescript": "^4.4.3"
}
}