-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.91 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ptokens.js",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"dev": "lerna run --parallel dev",
"doc": "typedoc",
"lint": "lerna run lint",
"test": "lerna run test",
"type-check": "lerna run type-check",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.0",
"@rollup/plugin-typescript": "^8.1.0",
"@testing-library/dom": "^8.13.0",
"@types/multicoin-address-validator": "^0.5.0",
"@types/node-fetch": "^2.6.1",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^7.0.4",
"jest": "^29.0.0",
"lerna": "^5.3.0",
"lint-staged": "^12.4.0",
"rollup": "^2.70.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^29.0.0",
"typedoc": "^0.23.16",
"typedoc-plugin-resolve-crossmodule-references": "^0.3.2"
},
"dependencies": {
"@babel/runtime": "^7.20.1",
"tslib": "^2.4.0",
"typescript": "4.7.4"
},
"lint-staged": {
"*.[tj]s": "eslint --cache"
}
}