-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.05 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
{
"name": "safe-apps",
"private": true,
"scripts": {
"build": "yarn workspaces run build",
"test": "yarn workspaces run test --watchAll=false",
"test:coverage": "yarn workspaces run test --coverage --watchAll=false",
"deploy:pr": "yarn workspaces run deploy:pr",
"deploy:s3": "yarn workspaces run deploy:s3",
"format": "prettier --ignore-path .gitignore --write './apps/**/*.{js,jsx,ts,tsx}'",
"lint:check": "eslint './apps/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "yarn lint:check --fix",
"start:drain-safe": "yarn workspace drain-safe start",
"start:ramp-network": "yarn workspace ramp-network start",
"start:siwe-delegate-manager": "yarn workspace siwe-delegate-manager start",
"start:tx-builder": "yarn workspace tx-builder start",
"start:wallet-connect": "yarn workspace wallet-connect start",
"start:mmi": "yarn workspace mmi start",
"prepare": "husky install",
"e2e": "npx cypress open"
},
"version": "2.5.1",
"workspaces": [
"apps/*"
],
"dependencies": {
"@safe-global/safe-apps-react-sdk": "^4.7.0",
"@safe-global/safe-apps-sdk": "^8.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@jscutlery/semver": "^2.27.2",
"@nrwl/cli": "13.8.0",
"@nrwl/tao": "13.8.0",
"@nrwl/workspace": "13.8.0",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"assert": "^2.0.0",
"axios": "^1.6.0",
"buffer": "^6.0.3",
"commitizen": "^4.3.0",
"crypto-browserify": "^3.12.0",
"cypress": "^12.4.0",
"cypress-file-upload": "^5.0.8",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^5.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"git-cz": "^4.9.0",
"https-browserify": "^1.0.0",
"husky": "~8.0.3",
"lint-staged": "^13.2.3",
"os-browserify": "^0.3.0",
"prettier": "^3.0.0",
"process": "^0.11.10",
"react-app-rewired": "^2.1.6",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typescript": "^4.9.4",
"url": "^0.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"./apps/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --ignore-path .gitignore --write"
]
}
}