-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.55 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
{
"name": "douban",
"version": "1.0.0",
"description": "douban api proxy",
"main": "./server",
"scripts": {
"start": "npm run updateCode && nodemon -e ts,js,json --delay 2500ms --watch server --exec npm run server",
"start:test": "ts-node -r tsconfig-paths/register ./server/test.ts",
"start:test:watch": "nodemon --watch server --exec ts-node -r tsconfig-paths/register ./server/test.ts",
"server": "ts-node -r tsconfig-paths/register ./server/index.ts",
"updateCode": "ts-node -r tsconfig-paths/register ./server/pullCode.ts",
"build:image": "docker image build -t zhuzhuyule/douban:latest .",
"build:git-node": "docker image build -f Dockerfile.git.node -t zhuzhuyule/git-node .",
"test": "test"
},
"keywords": [
"douban",
"api",
"movie"
],
"repository": "https://github.com/zhuzhuyule/doubanProxy.git",
"author": "zhuzhuyule",
"license": "ISC",
"dependencies": {
"axios-https-proxy-fix": "^0.17.1",
"cheerio": "^1.0.0-rc.5",
"dayjs": "^1.10.3",
"debug": "^4.3.1",
"express": "^4.17.1",
"git-pull-or-clone": "^2.0.1",
"log-symbols": "^4.0.0",
"log4js": "^6.3.0",
"mongoose": "^5.11.12",
"node-schedule": "^2.0.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node-schedule": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.18.0"
}
}