-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "ckitjs-app",
"version": "0.0.0",
"description": "ckb apps toolkit",
"repository": "https://github.com/homura/ckit.git",
"author": "[email protected]",
"license": "MIT",
"private": true,
"npmClient": "yarn",
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@ckb-lumos/ckb-indexer": "^0.17.0-rc9",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-jest": "^26.6.3",
"copyfiles": "^2.4.1",
"eslint": "^7.30.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "26.6.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"scripts": {
"build:lib": "make build-lib",
"test": "make test",
"lint": "make lint",
"clean": "make clean"
},
"publishConfig": {
"access": "public"
}
}