-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 KB
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
{
"name": "iamck-algorithm",
"version": "1.0.0",
"description": "Algorithm misc",
"private": true,
"author": {
"name": "Iamck",
"email": "thanhson201@gmail.com",
"url": "https://sonck201.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/sonck201/algorithm"
},
"scripts": {
"lint": "yarn lint-ts",
"lint-ts": "tsc --noEmit && eslint \"**/*.{js,ts}\" --ignore-path .gitignore .",
"lint-ts:fix": "yarn lint-ts --quiet --fix",
"lint:fix": "yarn lint-ts:fix"
},
"dependencies": {
"bluebird": "^3.5.5",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/eslint": "^7.2.0",
"@types/faker": "^5.1.4",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"engines": {
"node": "14 || 15",
"yarn": "^1.22.0"
}
}