-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.hbs
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json.hbs
File metadata and controls
58 lines (58 loc) · 1.46 KB
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
{
"name": "{{projectName}}",
"private": true,
"version": "{{projectVersion}}",
"description": "{{projectDescription}}",
"sideEffects": false,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "father-build",
"clean": "lerna clean && rimraf node_modules yarn.lock",
"cov": "nyc jest",
"lint": "eslint packages/ --quiet --ext ts",
"test": "jest packages/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"package.json": [
"sort-package-json"
],
"packages/**/*.{js,jsx,tsx,ts,less,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@babel/runtime": "^7.10.5",
"lerna": "^3.22.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-lerna-scopes": "^9.1.1",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.24",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.4.0",
"eslint-config-alloy": "^3.7.3",
"eslint-plugin-react": "^7.20.3",
"father-build": "^1.18.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"sort-package-json": "^1.24.0",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
}
}