generated from maxgfr/typescript-swc-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.17 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "twtmf",
"type": "module",
"version": "0.0.1",
"author": "Jesse Zhu",
"license": "GPL-3.0",
"description": "A Twitter crawler based on headless browser.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"twitter",
"crawler",
"typescript",
"swc"
],
"scripts": {
"prepare": "husky install",
"start": "node ./dist/index.js",
"dev": "nodemon",
"develop": "NODE_ENV=development ts-node -r tsconfig-paths/register --transpile-only src/index.ts",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"clean": "rimraf build && rimraf dist",
"build": "swc ./src -d dist",
"build:watch": "swc ./src -d dist -w",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prettier": "prettier '**/*.{ts,json,md}'",
"prettier:write": "prettier --write '**/*.{ts,json,md}'",
"type-check": "tsc --noEmit",
"lint-staged": "lint-staged"
},
"dependencies": {
"@types/express": "^4.17.17",
"@types/hpp": "^0.2.2",
"axios": "^1.4.0",
"dotenv": "^16.1.4",
"envalid": "^7.3.1",
"express": "^4.18.2",
"fp-ts": "^2.16.0",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"io-ts": "^2.2.20",
"morgan": "^1.10.0",
"puppeteer": "^20.5.0",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@swc/cli": "0.1.62",
"@swc/core": "^1.3.59",
"@swc/helpers": "^0.5.1",
"@swc/jest": "0.2.26",
"@types/axios": "^0.14.0",
"@types/jest": "29.5.2",
"@types/morgan": "^1.9.4",
"@types/node": "18.16.17",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "29.5.0",
"lint-staged": "^13.1.0",
"nodemon": "2.0.22",
"prettier": "^2.8.8",
"regenerator-runtime": "^0.13.11",
"rimraf": "5.0.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"typescript": "5.1.3"
}
}