-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.79 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": "snuboard-crawler",
"version": "0.0.2",
"description": "This is the crawler for SNUBoard project.",
"dependencies": {
"@apify/storage-local": "^2.3.0",
"@apify/tsconfig": "^0.1.0",
"@nestjs/common": "^10.4.4",
"apify": "^3.2.5",
"bcrypt": "^5.1.1",
"bluebird": "^3.7.2",
"cheerio": "^1.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"crawlee": "^3.11.4",
"dotenv": "^16.4.5",
"firebase-admin": "^12.5.0",
"mysql2": "^3.11.3",
"nestjs": "^0.0.1",
"octokit": "^4.0.2",
"rimraf": "^6.0.1",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.20",
"yargs": "^17.7.2"
},
"scripts": {
"prestart": "npm run build",
"start": "node dist/src/main.js",
"lint": "npx eslint \"{src,test}/**/*.{js,ts,tsx}\" --fix",
"lint-staged": "lint-staged",
"build": "npx tsc",
"rebuild": "rm -rf dist/* && npm run build",
"clean": "rm -rf apify_storage",
"test": "NODE_OPTIONS='--experimental-vm-modules' npx jest --passWithNoTests",
"coverage": "jest --coverage",
"update": "git submodule update --remote",
"precrawl-one": "npm run build",
"crawl-one": "node dist/src/crawl-one.js"
},
"lint-staged": {
"src/**/*.{js,json,ts}": [
"prettier --write"
]
},
"author": "Sanggyu Lee",
"license": "UNLICENSED",
"devDependencies": {
"@apify/eslint-config": "^0.4.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/bcrypt": "^5.0.2",
"@types/bluebird": "^3.5.42",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.5.4"
},
"type": "module"
}