-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 4.03 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
{
"name": "@zero-tech/zapp-staking",
"version": "0.9.4",
"main": "dist/index.js",
"repository": "[email protected]:zer0-os/zApp-Staking.git",
"scripts": {
"clean": "rimraf dist && npx mkdirp dist",
"dev": "NODE_ENV=dev vite --config dev-environment/vite.config.ts",
"build": "npm-run-all clean build:bundle:*",
"build:bundle:scripts": "NODE_ENV=production babel --extensions \".ts,.tsx,.js,.jsx\" ./src --out-dir ./dist",
"build:bundle:styles": "sass src:dist",
"build:bundle:assets": "copyfiles -u 1 src/assets/* dist",
"build:preview": "vite build --config ./dev-environment/vite.config.ts",
"watch": "npm-run-all clean watch:all",
"watch:all": "concurrently --kill-others --names \"babel,sass,assets,config\" -c \"bgBlue.bold,bgGreen.bold,bgRed.bold,bgMagenta.bold\" \"npm run watch:scripts\" \"npm run watch:styles\" \"npm run watch:assets\" \"npm run watch:config\"",
"watch:scripts": "npm run build:bundle:scripts -- --watch",
"watch:styles": "npm run build:bundle:styles -- --watch",
"watch:assets": "npm run build:bundle:assets && onchange 'src/**/*.{jpg,jpeg,svg,png}' -- npm run build:bundle:assets",
"watch:config": "cp package.json dist/ && onchange 'package.json' -- npm run build:bundle:assets",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:e2e": "playwright test",
"test:e2e:headless": "HEADLESS_MODE=true playwright test",
"link": "bash .scripts/link.sh",
"lint": "eslint ./src",
"prettier": "prettier -w src/"
},
"files": [
"dist"
],
"author": "zer0-os",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/plugin-proposal-function-bind": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-classes": "^7.16.0",
"@babel/plugin-transform-destructuring": "^7.16.0",
"@babel/plugin-transform-spread": "^7.16.0",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@playwright/test": "^1.37.1",
"@reduxjs/toolkit": "^1.7.1",
"@synthetixio/synpress": "^3.7.2-beta.4",
"@types/enzyme": "^3.10.10",
"@types/jest": "^24.9.1",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitejs/plugin-react": "^4.0.3",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"babel-jest": "^27.4.6",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-react-docgen": "^4.2.1",
"babel-plugin-transform-rename-import": "^2.3.0",
"concurrently": "^7.4.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"enzyme": "^3.11.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"sass": "^1.53.0",
"typescript": "^5.1.6",
"vite": "^4.4.5",
"vite-plugin-node-polyfills": "^0.11.2",
"vite-tsconfig-paths": "^4.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"@reduxjs/toolkit": "^1.7.1",
"@testing-library/react": "^11.2.6",
"ethers": "^5.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0 || ^6.0.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@enzoferey/ethers-error-parser": "^0.2.2",
"@ethersproject/units": "^5.6.1",
"@sentry/react": "^8.43.0",
"@sentry/vite-plugin": "^2.22.7",
"@zer0-os/zos-component-library": "0.15.3",
"@zero-tech/zapp-utils": "^0.6.7",
"@zero-tech/zfi-sdk": "0.2.1",
"@zero-tech/zns-sdk": "0.6.1",
"@zero-tech/zui": "^0.26.5",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"millify": "^5.0.1",
"react-query": "^3.39.1",
"viem": "^1.6.4",
"wagmi": "^1.3.10"
},
"resolutions": {
"**/react-router-dom": "^5.3.0",
"**/@zero-tech/zfi-sdk": "0.2.1"
}
}