-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "crawlerSite",
"version": "3.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"typeorm:cli": "ts-node ./node_modules/typeorm/cli.js",
"migrate": "ts-node script/migration.ts",
"serve": "yarn run build && node build/server.js",
"serve:swagger": "yarn run build swagger && node build/server.js",
"build": "sh script/build.sh",
"serve:light": "node build/server.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crawler": "^1.3.0",
"express": "^4.17.1",
"lint": "^0.7.0",
"module-alias": "^2.2.2",
"mysql": "^2.18.1",
"swagger-ui-express": "^4.1.6",
"ts-node": "^9.1.1",
"tsoa": "^3.5.2",
"typeorm": "^0.2.31"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^14.14.32",
"@types/swagger-ui-express": "^4.1.2",
"concurrently": "^6.0.2",
"typescript": "^4.2.3"
},
"_moduleAliases": {
"@": "build"
}
}