-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.69 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
{
"name": "@readyplayerme/next-api-router",
"version": "1.4.3",
"description": "",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/readyplayerme/next-api-router"
},
"license": "ISC",
"author": "Readyplayerme Team",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && tsc",
"commit": "commit",
"format": "prettier --write \"{,*/**/}*.{ts,tsx,js,jsx,json}\"",
"lint": "eslint --cache --fix \"**/*.{ts,tsx,js,jsx}\" --no-error-on-unmatched-pattern",
"prepare": "husky install",
"test": "jest --collect-coverage"
},
"types": "./types.d.ts",
"lint-staged": {
"*.ts": [
"npm run format",
"npm run lint"
]
},
"dependencies": {
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"http-assert": "^1.5.0",
"http-errors": "^1.8.0",
"lodash": "^4.17.21",
"next": "^12.3.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/prompt-cli": "^17.1.2",
"@types/http-assert": "^1.5.3",
"@types/http-errors": "^1.8.1",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.173",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.2.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}