-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.36 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "root",
"private": true,
"version": "0.1.0",
"description": "Monorepo boilerplate based on TypeScript",
"workspaces": [
"packages/*"
],
"main": "index.js",
"scripts": {
"watch": "lerna run watch --parallel --stream",
"build": "lerna run build --parallel --stream",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,sass,md}\"",
"postinstall": "lerna bootstrap",
"test": "jest --config=./configs/jest.config.js",
"test:watch": "jest --watchAll --config=./configs/jest.config.js",
"test:ci": "jest --config=./configs/jest.config.js --coverage"
},
"repository": {
"type": "git",
"url": "git+https://git@github.com/lbwa/ts-monorepo-boilerplate.git"
},
"keywords": [
"monorepo",
"typescript",
"boilerplate"
],
"author": "Bowen Liu <asyncmode@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lbwa/ts-monorepo-boilerplate/issues"
},
"homepage": "https://github.com/lbwa/ts-monorepo-boilerplate#readme",
"dependencies": {
"@babel/runtime": "^7.11.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-object-assign": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/jest-dom": "^5.11.4",
"@types/jest": "^26.0.10",
"@types/testing-library__jest-dom": "^5.9.4",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"endOfLine": "lf"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,sass,md}": [
"prettier --write"
]
}
}