generated from korniychuk/wallaby-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.85 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
58
59
60
{
"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": "^12.14.1",
"npm": "^6.13.4",
"yarn": "^1.21.1"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:prod": "npm run build",
"lint": "eslint --ext .js,.ts src/**",
"lint:fix": "npm 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"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "~7.7.5",
"@babel/preset-env": "~7.7.6",
"@babel/preset-typescript": "~7.7.4",
"@types/jest": "~25.1.0",
"@typescript-eslint/eslint-plugin": "~2.14.0",
"@typescript-eslint/parser": "~2.14.0",
"eslint": "~6.8.0",
"eslint-config-airbnb-base": "~14.0.0",
"eslint-import-resolver-typescript": "~2.0.0",
"eslint-plugin-filenames": "~1.3.2",
"eslint-plugin-import": "~2.19.1",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-unicorn": "~15.0.1",
"husky": "~3.1.0",
"jest": "~25.1.0",
"jest-extended": "~0.11.5",
"rimraf": "~3.0.0",
"typescript": "~3.7.5"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push",
"post-merge": "IS_YARN=true yarn install"
}
}
}