-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.07 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "phpbb_migration",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "ts-node --files src/main.ts",
"dev:watch": "nodemon",
"start": "npm run build && node dist/main.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/btoa": "^1.2.3",
"@types/cheerio": "^0.22.18",
"@types/he": "^1.1.1",
"@types/jest": "^26.0.3",
"@types/md5": "^2.2.0",
"@types/node": "^14.0.14",
"@types/promise-retry": "^1.1.3",
"@types/shortid": "0.0.29",
"@types/sqlstring": "^2.2.1",
"@types/tough-cookie": "^4.0.0",
"@types/tough-cookie-file-store": "^2.0.0",
"@types/uuid": "^8.0.0",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.49",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5"
},
"dependencies": {
"axios": "^0.19.2",
"axios-cookiejar-support": "^1.0.0",
"axios-retry": "^3.1.8",
"btoa": "^1.2.1",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.2.0",
"form-data": "^3.0.0",
"he": "^1.2.0",
"html2bbcode": "^1.2.6",
"lodash": ">=4.17.19",
"md5": "^2.2.1",
"md5hex": "^1.0.0",
"promise-retry": "^2.0.1",
"sqlstring": "^2.3.2",
"tough-cookie": "^4.0.0",
"tough-cookie-file-store": "^2.0.2",
"typescript-tuple": "^2.2.1",
"uuid": "^8.2.0"
},
"nodemonConfig": {
"watch": [
"src"
],
"exec": "npm run dev",
"ext": "ts",
"ignore": [
"*.spec.ts"
],
"delay": "3"
},
"jest": {
"roots": [
"<rootDir>/src/__tests__"
],
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.(tsx?|ts?)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?|ts?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}