-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"scripts": {
"eslint": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
"build": "webpack",
"run": "node --require ts-node/register index.ts",
"run-built": "node dist/main.js",
"test": "jest",
"prettier": "prettier --write"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"dotenv": "^10.0.0",
"utility-types": "^3.10.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"@types/webpack": "^5.28.0",
"clean-webpack-plugin": "^4.0.0",
"eslint-plugin-only-warn": "^1.0.3",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "^11.2.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-loader": "^9.4.1",
"typescript": "^4.4.3"
},
"name": "starter",
"version": "1.0.0",
"main": "index.js",
"author": "",
"license": "ISC",
"description": "",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": "eslint --fix --max-warnings=0",
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"preset": "ts-jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && jest --passWithNoTests"
}
}
}