forked from safe-global/safe-gateway-typescript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "@gnosis.pm/safe-react-gateway-sdk",
"version": "3.0.1",
"main": "dist/index.min.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "[email protected]:gnosis/safe-react-gateway-sdk.git",
"author": "katspaugh",
"license": "MIT",
"dependencies": {
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-jest": "^27.2.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"prettier": "^2.4.0",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2"
},
"scripts": {
"lint": "eslint './src/**/*.ts'",
"lint:fix": "yarn lint --fix",
"types": "yarn tsc",
"start": "rm -rf dist && webpack --mode production --watch",
"build": "rm -rf dist && webpack --mode production",
"prepublishOnly": "yarn types && yarn lint && yarn test:check && yarn build",
"prettier": "prettier -w .",
"test": "jest --watch --coverage .",
"test:check": "jest --testPathPattern=tests",
"test:ci": "jest --ci --coverage --json --watchAll=false --testLocationInResults --runInBand --testPathPattern=tests"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --w ."
]
}
}