-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.73 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
{
"name": "subtitler-clean",
"version": "1.0.0",
"description": "Create subtitles for audio/video using Youtube",
"main": "index.js",
"scripts": {
"start": "sucrase-node src/main/server.ts",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:parallel": "jest --passWithNoTests --silent --noStackTrace",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:clear": "jest --clearCache",
"lint": "eslint --fix",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"author": "Wemerson Jesus",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.11",
"@types/sqlite3": "^3.1.8",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.4",
"jest": "^27.4.3",
"lint-staged": "^12.1.2",
"sucrase": "^3.20.3",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run test:staged"
]
},
"dependencies": {
"express": "^4.17.2",
"fast-glob": "^3.2.7",
"googleapis": "^92.0.0",
"multer": "^1.4.4",
"sqlite3": "^5.0.2"
}
}