-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 KB
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
{
"name": "gitee-db",
"version": "0.0.1",
"description": "免费的增删改查数据库",
"main": "src/index.ts",
"scripts": {
"build": "parcel build __test__/index.html -d public",
"build:ts": "tsc",
"build:api": "parcel build src/index.ts -d lib --global giteedb",
"dev": "parcel __test__/index.html",
"gen:api": "ts-node scripts/gen-api.ts"
},
"keywords": [
"gitee",
"db",
"database",
"free"
],
"author": "chenhb23 <chenhongbo_1994@163.com>",
"homepage": "https://github.com/chenhb23/gitee-db#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chenhb23/gitee-db.git"
},
"browserslist": [
"since 2017-06"
],
"license": "MIT",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "4.3.8",
"lint-staged": "^10.5.4",
"parcel-bundler": "^1.12.5",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}