-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "@mapistry/take-home-challenge",
"version": "1.0.0",
"description": "The Mapistry take home challenge project",
"repository": "https://github.com/Mapistry/take-home-challenge",
"author": "Mapistry <[email protected]>",
"license": "UNLICENSED",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"dependencies": {
"cross-env": "^7.0.3"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"husky": "^7.0.4",
"jest": "27.4.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^12.0.3",
"prettier": "^2.4.1",
"ts-jest": "27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"scripts": {
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && echo \"No linting problems found.\"",
"test": "jest",
"typecheck": "tsc --noEmit && echo \"No type problems found.\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --cache",
"*.{ts,tsx}": "yarn typecheck"
}
}