forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.43 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
{
"name": "sui-wallet",
"version": "0.0.1",
"description": "A wallet for Sui",
"main": "./dist/ui.js",
"scripts": {
"build:prod": "cross-env NODE_ENV=\"production\" TS_NODE_PROJECT=\"./configs/ts/tsconfig.webpack.json\" webpack --progress",
"build:dev": "cross-env NODE_ENV=\"development\" TS_NODE_PROJECT=\"./configs/ts/tsconfig.webpack.json\" webpack --progress",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"prettier:fix:watch": "onchange '**' -i -f add -f change -j 5 -- prettier -w --ignore-unknown {{file}}",
"eslint:check": "eslint --max-warnings=0 .eslintrc.js .",
"eslint:fix": "npm run eslint:check -- --fix",
"stylelint:check": "stylelint --max-warnings 0 \"**/*.?(s)css\"",
"stylelint:fix": "npm run stylelint:check -- --fix",
"lint": "npm run eslint:check && npm run prettier:check && npm run stylelint:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix && npm run stylelint:fix",
"start": "concurrently --restart-tries 10 --raw \"npm:build:dev -- --watch\" \"npm:prettier:fix:watch\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "github.com:MystenLabs/sui.git"
},
"keywords": [
"sui",
"wallet",
"coins",
"tokens",
"balance"
],
"author": "Mysten Labs <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/dotenv-webpack": "^7.0.3",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/webextension-polyfill": "^0.8.3",
"@types/webpack": "^5.28.0",
"concurrently": "^7.1.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"mini-css-extract-plugin": "^2.6.0",
"onchange": "^7.1.0",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.5.0",
"prettier": "^2.6.2",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"stylelint": "^14.8.2",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-webpack-plugin": "^3.2.0",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@mysten/sui.js": "file:../sdk/typescript",
"@reduxjs/toolkit": "^1.8.1",
"bip39-light": "^1.0.7",
"bootstrap-icons": "^1.8.2",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"formik": "^2.2.9",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-intl": "^6.0.2",
"react-number-format": "^4.9.3",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"rxjs": "^7.5.5",
"stream-browserify": "^3.0.0",
"tweetnacl": "^1.0.3",
"webextension-polyfill": "^0.9.0",
"yup": "^0.32.11"
}
}