forked from stacks-archive/stats
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "root",
"private": true,
"prettier": "@blockstack/prettier-config",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean -y && lerna exec -- rm -rf ./node_modules ./dist",
"typecheck": "lerna run typecheck --parallel --stream",
"dev:watch": "lerna run dev:watch --parallel --stream",
"build": "lerna run build",
"build:client": "lerna run build --scope @blockstack/stats",
"build:docker": "docker build --tag myc-stats:1.0 .",
"lint": "yarn lint:eslint",
"lint:eslint": "eslint --ext .ts,.tsx,.js . -f unix",
"lint:fix": "eslint --ext .ts,.tsx,.js . -f unix --fix",
"start:server": "lerna run prod --scope @blockstack/stats-server --stream"
},
"devDependencies": {
"@blockstack/prettier-config": "^0.0.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"prettier": "^1.19.1",
"tsdx": "^0.12.3",
"typescript": "^3.8.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"workspaces": [
"packages/*"
]
}