-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "advanced",
"version": "1.0.0",
"main": "index.js",
"author": "Álvaro Basílio de Araújo <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/module-alias": "^2.0.1",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"husky": "^7.0.2",
"jest": "^27.2.3",
"jest-mock-extended": "^2.0.4",
"lint-staged": "^11.1.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"scripts": {
"build": "rm -r ./dist && tsc -p tsconfig-build.json",
"start": "node dist/main/api",
"lint": "npx eslint .",
"lint:fix": "yarn lint --fix",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test --watch",
"test:staged": "yarn test --findRelatedTests",
"test:coverage": "yarn test --coverage",
"prepare": "husky install"
},
"dependencies": {
"module-alias": "^2.2.2"
}
}