-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "edabit-code-challenge",
"version": "1.0.0",
"description": "A better way to learn programming",
"main": "index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jakubjirous/edabit-code-challenge.git"
},
"keywords": [
"typescript",
"jest"
],
"author": "Jakub Jirous <info@jakubjirous.cz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakubjirous/edabit-code-challenge/issues"
},
"homepage": "https://github.com/jakubjirous/edabit-code-challenge#readme",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:w": "jest --watch",
"test:wa": "jest --watchAll",
"test:cov": "jest --coverage"
},
"dependencies": {
"babel-jest": "^29.3.1",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-jest-hoist": "^29.2.0",
"babel-preset-current-node-syntax": "^1.0.1",
"babel-preset-jest": "^29.2.0",
"jest": "^29.3.1",
"jest-changed-files": "^29.2.0",
"jest-circus": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-config": "^29.3.1",
"jest-diff": "^29.3.1",
"jest-docblock": "^29.2.0",
"jest-each": "^29.3.1",
"jest-environment-node": "^29.3.1",
"jest-get-type": "^29.2.0",
"jest-haste-map": "^29.3.1",
"jest-leak-detector": "^29.3.1",
"jest-matcher-utils": "^29.3.1",
"jest-message-util": "^29.3.1",
"jest-mock": "^29.3.1",
"jest-pnp-resolver": "^1.2.3",
"jest-regex-util": "^29.2.0",
"jest-resolve": "^29.3.1",
"jest-resolve-dependencies": "^29.3.1",
"jest-runner": "^29.3.1",
"jest-runtime": "^29.3.1",
"jest-snapshot": "^29.3.1",
"jest-util": "^29.3.1",
"jest-validate": "^29.3.1",
"jest-watcher": "^29.3.1",
"jest-worker": "^29.3.1",
"load-tsconfig": "^0.2.3",
"source-map": "^0.6.1",
"source-map-support": "^0.5.13",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}