-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@mycrypto/wallet-list",
"version": "1.4.0",
"description": "Wallet list to be used throughout the MyCrypto product suite.",
"author": "MyCrypto",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"types": "typings/index.d.ts",
"repository": "[email protected]:MyCryptoHQ/wallet-list.git",
"files": [
"lib",
"typings"
],
"sideEffects": false,
"scripts": {
"clean": "rimraf lib",
"build": "yarn run clean && yarn run build:source && yarn run build:declarations",
"build:source": "yarn run build:source:cjs && yarn run build:source:es",
"build:source:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel src --extensions '.ts,.tsx' --source-maps --out-dir lib/cjs --copy-files",
"build:source:es": "cross-env NODE_ENV=production BABEL_ENV=es babel src --extensions '.ts,.tsx' --source-maps --out-dir lib/es --copy-files",
"build:declarations": "tsc -p tsconfig.build.json",
"lint": "yarn run lint:types && yarn run lint:source && yarn run lint:format",
"lint:types": "tsc --noEmit",
"lint:source": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx",
"lint:format": "prettier --check --ignore-path .gitignore \"**/*.{ts,tsx,js,json,yml}\"",
"format": "prettier --write --ignore-path .gitignore \"**/*.{ts,tsx,js,json,yml}\"",
"prepare": "simple-git-hooks",
"prepack": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-loader": "^8.2.2",
"babel-plugin-inline-svg": "^1.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.3.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"utility-types": "3.10.0"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"remove": "^0.1.5"
}
}