-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
116 lines (116 loc) · 3.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@sablier/v1-safe-app",
"description": "Safe App for interacting with Sablier V1",
"version": "1.2.0",
"author": {
"name": "Sablier",
"url": "https://sablier.com"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/sablier-labs/v1-safe-app/issues"
},
"dependencies": {
"@apollo/client": "^3.5.2",
"@date-io/date-fns": "1.x",
"@ethersproject/abi": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.0",
"@ethersproject/units": "^5.5.0",
"@gnosis.pm/safe-apps-react-sdk": "^4.0.6",
"@gnosis.pm/safe-apps-sdk": "^6.0.0",
"@gnosis.pm/safe-react-components": "^0.8.6",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.3.10",
"big-number-input": "^1.0.3",
"date-fns": "^2.25.0",
"graphql": "^16.0.1",
"lodash.sortby": "^4.7.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.37.2",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/big.js": "^6.1.2",
"@types/jest": "^27.0.2",
"@types/lodash.sortby": "^4.7.6",
"@types/node": "^16.11.7",
"@types/react": "^17.0.35",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "4.x",
"@typescript-eslint/parser": "4.x",
"eslint": "7.x",
"eslint-config-airbnb": "18.x",
"eslint-config-airbnb-typescript": "14.x",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"known-css-properties": "^0.23.0",
"lint-staged": "^12.1.1",
"postcss": "^8.3.11",
"postcss-syntax": "^0.36.2",
"prettier": "^2.4.1",
"react-app-rewired": "^2.1.8",
"react-is": "^17.0.2",
"react-scripts": "4.0.3",
"shx": "^0.3.3",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "4.3.4",
"vercel": "^28.8.0"
},
"homepage": "./",
"keywords": [
"blockchain",
"ethereum",
"gnosis-safe",
"react",
"sablier",
"typescript"
],
"license": "LGPL-3.0-or-later",
"packageManager": "yarn@3.3.0",
"private": true,
"repository": "git:sablier-labs/sablier-safe-app",
"scripts": {
"build": "react-app-rewired build",
"clean": "shx rm -rf ./build",
"dev": "react-app-rewired --openssl-legacy-provider start",
"eject": "react-scripts eject",
"lint": "yarn lint:ts && yarn lint:styles && yarn prettier:check && yarn typecheck",
"lint:styles": "stylelint --config ./.stylelintrc.js \"./src/**/*.{css,ts,tsx,scss}\"",
"lint:ts": "eslint \"src/**/*.{ts,tsx}\"",
"prettier:check": "prettier --check \"**/*.{js,json,jsx,md,ts,tsx,yaml,yml}\"",
"prettier:write": "prettier --write \"**/*.{js,json,jsx,md,ts,tsx,yaml,yml}\"",
"start": "react-app-rewired start",
"typecheck": "tsc --noEmit"
}
}