-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "typescript-exercises",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/MartinRosenberg/typescript-exercises"
},
"license": "GPL-3.0",
"author": {
"name": "Martin Rosenberg",
"email": "[email protected]",
"url": "https://martinbrosenberg.com"
},
"scripts": {
"lint": "yarn lint:types && yarn lint:ci",
"lint:ci": "eslint . --ext .tsx,.ts",
"lint:types": "tsc --noEmit -p .",
"test": "yarn lint:types && jest --no-cache"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-jest": "^26.6.3",
"core-js": "^3.8.3",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"engines": {
"node": "14.x"
}
}