-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "calculator",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "ts-node src/calculator.ts",
"dev": "nodemon src/calculator.ts",
"lint": "eslint \"./{src,tests}/*\"",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"test:full": "yarn lint && yarn test:coverage"
},
"license": "MIT",
"devDependencies": {
"@types/cheerio": "^0.22.22",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn test:full",
"pre-push": "yarn test:full"
}
},
"dependencies": {
"aws-sdk": "^2.772.0",
"axios": "^0.20.0",
"cheerio": "^1.0.0-rc.3"
}
}