-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 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
59
{
"name": "@project/repo",
"version": "1.0.0",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn run-p build:*",
"build:api": "yarn workspace @project/api build",
"build:app": "yarn workspace @project/app build",
"develop": "yarn run-p develop:*",
"develop:api": "yarn workspace @project/api develop",
"develop:app": "yarn workspace @project/app develop",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"test": "yarn workspaces run test"
},
"dependencies": {
"yarn": ">=1.22.0"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.1.0",
"jest": "^25.1.0",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.2",
"npm-run-all": "4.1.5",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.7.0",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test"
}
},
"lint-staged": {
"*.{js,json,md,ts,tsx,jsx,vue}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
}
}