-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.9 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
{
"name": "ts-practice-edabit",
"version": "1.0.0",
"description": "Solved Javascript exercises in Typescript from.",
"main": "dist/index.js",
"scripts": {
"test": "jest --detectOpenHandles --no-cache ./*",
"start": "node --unhandled-rejections=strict dist/index.js",
"build": "npm run clear && tsc",
"build:debug": "npm run clear && tsc -p tsconfig.dev.json",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --ignore-pattern src/**/*.spec.ts",
"lint:log": "eslint --no-color -o logs/lint.log -c .eslintrc.js --ext .js,.jsx,.ts,.tsx src",
"clear": "rimraf dist && rimraf logs"
},
"repository": {
"type": "git",
"url": "https://github.com/raziEiL/ts-practice-edabit.git"
},
"keywords": [],
"author": "Denis Medvedev (raziEiL)",
"license": "ISC",
"homepage": "https://github.com/raziEiL/ts-practice-edabit#readme",
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/eslint-plugin-tslint": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-unicorn": "^34.0.1",
"jest": "^27.0.6",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"tslint": "^6.1.1",
"typescript": "^4.3.5"
}
}