forked from JVMartin/wordpress-to-ghost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "migration-tool",
"version": "0.0.0",
"description": "",
"private": true,
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"dev": "ts-node -r dotenv/config src/main.ts",
"test": "npm run test-unit",
"test-unit": "jest -c jest.unit.config.js",
"lint": "tslint 'src/**/*.ts' --format verbose",
"lint-fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.ts' '**/*.tsx' '**/*.json'",
"prettier-write": "npm run prettier -- --write",
"prettier-check": "npm run prettier -- --check"
},
"author": "",
"dependencies": {
"@tryghost/html-to-mobiledoc": "0.6.0",
"lodash": "4.17.19",
"mysql": "2.17.1",
"pino": "5.13.2"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/lodash": "^4.14.144",
"@types/mysql": "2.15.7",
"@types/node": "12.7.11",
"@types/pino": "5.20.0",
"dotenv": "8.1.0",
"jest": "24.9.0",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"typemoq": "2.1.0",
"typescript": "3.6.3"
}
}