-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
{
"name": "coding-interview-questions",
"version": "1.0.0",
"description": "前端常用工具库及高频面试题",
"keywords": [
"interview",
"interview-questions",
"qianduan",
"qianduanmianshiti",
"javascript",
"react",
"node",
"lodash",
"ramda"
],
"main": "dist/index.js",
"scripts": {
"test": "jest",
"dev": "esbuild src/index.ts --watch --bundle --minify --sourcemap --platform=node --outfile=dist/index.js",
"dev-tsc": "tsc -w",
"lint": "eslint --ext .ts,.js packages/ --max-warnings 0",
"prettier": "prettier .",
"format": "npm run prettier -- --write"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/node": "^18.14.1",
"assert": "^2.0.0",
"babel-jest": "^29.4.3",
"esbuild": "^0.15.10",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"lint-staged": "^13.0.3",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"eslint --cache --fix --max-warnings 0"
]
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/niexq/coding-interview-questions.git"
},
"author": "niexq",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/niexq/coding-interview-questions/issues"
},
"homepage": "/~https://github.com/niexq/coding-interview-questions#readme"
}