-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.54 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "api-file-server",
"version": "1.0.0",
"private": true,
"description": "<description>",
"keywords": [],
"homepage": "https://github.com/demonovel/api-file-server#readme",
"bugs": {
"url": "https://github.com/demonovel/api-file-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demonovel/api-file-server.git"
},
"license": "ISC",
"author": "bluelovers",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"start": "node ./server/index",
"start:now": "ypx vercel -- dev",
"coverage": "npx nyc yarn run test",
"lint": "npx eslint **/*.ts",
"test": "echo \"Error: no test specified\"",
"test:mocha": "npx mocha --require ts-node/register \"!(node_modules)/**/*.{test,spec}.{ts,tsx}\"",
"build": "echo build",
"npm:publish": "npm publish",
"npm:publish:lerna": "ynpx --quiet lerna -- publish --yes --bump patch",
"prepublish:lockfile": "npx sync-lockfile .",
"prepublishOnly:check-bin": "ynpx --quiet @yarn-tool/check-pkg-bin",
"prepublishOnly:update": "yarn run ncu && yarn run sort-package-json",
"prepublishOnly_": "yarn run prepublishOnly:check-bin && yarn run prepublishOnly:update && yarn run test",
"postpublish:changelog": "ynpx --quiet @yarn-tool/changelog && git add ./CHANGELOG.md",
"postpublish:git:commit": "git commit -m \"chore(release): publish\" . & echo postpublish:git:commit",
"postpublish:git:push": "git push --follow-tags",
"postpublish:git:tag": "ynpx --quiet @yarn-tool/tag",
"postpublish": "yarn run postpublish:changelog && yarn run postpublish:git:commit && yarn run postpublish:git:tag && yarn run postpublish:git:push",
"ncu": "npx yarn-tool ncu -u",
"sort-package-json": "npx yarn-tool sort",
"tsc:default": "tsc -p tsconfig.json",
"tsc:esm": "tsc -p tsconfig.esm.json"
},
"dependencies": {
"bluebird": "^3.7.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase": "^8.8.0",
"fs-extra": "^10.0.0",
"realtime-db-adaptor": "^1.4.0",
"tslib": "^2.3.0",
"vercel": "^23.0.1"
},
"devDependencies": {
"@bluelovers/tsconfig": "^1.0.25",
"@demonovel/db-api": "^1.0.7",
"@types/bluebird": "^3.5.36",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.4.3",
"cross-fetch": "^3.1.4",
"typescript": "next"
},
"engines": {
"node": ">= 12.x",
"yarn": "> 1.22.0"
}
}