-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.8 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
{
"name": "wallaby-ts-webpack",
"description": "",
"license": "MIT",
"private": true,
"version": "1.0.0",
"bugs": {
"url": "https://github.com/korniychuk/wallaby-ts-webpack-starter/issues"
},
"homepage": "https://github.com/korniychuk/wallaby-ts-webpack-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/korniychuk/wallaby-ts-webpack-starter.git"
},
"engines": {
"node": "^16.4.2",
"yarn": "^1.22.1"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:prod": "npm run build",
"lint": "eslint --ext .js,.ts src/**",
"lint:fix": "yarn run lint -- --fix",
"pre-push": "npm run lint && npm run test && npm run build:prod && npm run tpl-repo:check",
"preinstall": "node ./tools/check-yarn.js",
"test": "jest -c jest.config.js",
"test:watch": "npm run test -- --watch",
"tpl-repo": "tools/merge-with-repository-template.sh",
"tpl-repo:check": "npm run tpl-repo -- check",
"tpl-repo:merge": "npm run tpl-repo -- merge",
"ts": "ts-node",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "~7.14.6",
"@babel/preset-env": "~7.14.7",
"@babel/preset-typescript": "~7.14.5",
"@types/jest": "~26.0.24",
"@types/node": "~16.3.1",
"@typescript-eslint/eslint-plugin": "~4.28.2",
"@typescript-eslint/parser": "~4.28.2",
"eslint": "~7.30.0",
"eslint-config-airbnb-base": "~14.2.1",
"eslint-import-resolver-typescript": "~2.4.0",
"eslint-plugin-filenames": "~1.3.2",
"eslint-plugin-import": "~2.23.4",
"eslint-plugin-promise": "~5.1.0",
"eslint-plugin-unicorn": "~34.0.1",
"husky": "~7.0.1",
"jest": "~27.0.6",
"jest-extended": "~0.11.5",
"rimraf": "~3.0.2",
"ts-node": "~10.1.0",
"typescript": "~4.3.5"
}
}