-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "tonjs",
"private": true,
"workspaces": [
"packages/logger",
"packages/ton",
"packages/bin",
"packages/cors",
"packages/upload",
"packages/compress",
"packages/balance"
],
"scripts": {
"dev": "nodemon --watch '{packages,example}/**/*.{ts,js,json}' --ignore '{packages,example}/**/*.{spec,test}.{ts,js,json}' --exec 'node --inspect --require ts-node/register'",
"format": "prettier '**/*.{js,json,ts,md,yaml}' !**/dist/** !./dist/** !**/coverage/** --write --no-semi --single-quote && yarn lint --fix",
"lint": "eslint '**/*.ts'",
"test": "jest",
"clean": "rimraf coverage packages/*/dist",
"build": "yarn workspaces run build",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"devDependencies": {
"@alljoint-next/eslint-config": "^0.3.2",
"@alljoint-next/eslint-config-typescript": "^0.3.12",
"@alljoint-next/ts-config": "^0.1.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^9.1.2",
"@types/jest": "^26.0.12",
"@types/node": "^14.0.11",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"husky": "^4.2.3",
"jest": "^25.3.0",
"lerna": "3.22.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.2",
"vuepress": "^1.5.0"
}
}