forked from tqtezos/minter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
112 lines (112 loc) · 3.5 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
{
"name": "client",
"version": "0.7.0",
"private": true,
"license": "MIT",
"dependencies": {
"@chakra-ui/react": "1.1.2",
"@emotion/core": "10.0.28",
"@emotion/react": "11.1.4",
"@emotion/styled": "11.0.0",
"@quipuswap/sdk": "2.0.3",
"@react-three/fiber": "7.0.4",
"@reduxjs/toolkit": "1.5.0",
"@taquito/beacon-wallet": "9.1.1",
"@taquito/signer": "9.1.1",
"@taquito/taquito": "9.1.1",
"@taquito/tzip12": "9.1.1",
"@taquito/tzip16": "9.1.1",
"@tqtezos/minter-contracts": "1.4.1",
"@types/lodash": "4.14.165",
"@types/react": "16.9.12",
"@types/react-dom": "16.9.0",
"@types/react-dropzone": "5.1.0",
"@types/react-helmet": "6.1.1",
"@types/react-redux": "7.1.16",
"@types/three": "0.130.0",
"@wert-io/widget-initializer": "0.0.4",
"axios-retry": "3.1.9",
"buffer": "6.0.3",
"clear": "0.1.0",
"clui": "0.3.6",
"csv": "5.5.0",
"figlet": "1.5.0",
"formik": "2.2.9",
"fp-ts": "2.10.3",
"framer-motion": "3.1.4",
"immer": "8.0.0",
"io-ts": "2.2.16",
"joi": "17.3.0",
"react": "16.13.1",
"react-chrono-plus": "1.8.4",
"react-dom": "16.13.1",
"react-dropzone": "11.2.4",
"react-feather": "2.0.9",
"react-google-login": "5.2.2",
"react-icons": "4.2.0",
"react-markdown": "6.0.2",
"react-redux": "7.2.2",
"react-share": "4.4.0",
"shelljs": "0.8.4",
"three": "0.130.1",
"ts-deepmerge": "1.0.8",
"typed-react-markdown": "0.1.0",
"typescript": "4.1.3",
"wouter": "2.5.1"
},
"devDependencies": {
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@tsed/logger": "5.5.2",
"@types/async-retry": "1.4.2",
"@types/clear": "0.1.1",
"@types/clui": "0.3.0",
"@types/configstore": "4.0.0",
"@types/figlet": "1.5.1",
"@types/inquirer": "7.3.1",
"@types/jest": "24.0.0",
"@types/shelljs": "0.8.8",
"async-retry": "1.3.1",
"axios": "0.21.1",
"configstore": "5.0.1",
"prettier": "2.1.1",
"react-scripts": "3.4.1",
"ts-node": "9.1.1"
},
"scripts": {
"start": "yarn start:testnet",
"start:testnet": "cp ./config/testnet.json src/config.json && react-scripts start",
"start:sandbox": "cp ./config/sandbox-bootstrapped.json src/config.json && react-scripts start",
"start:mainnet": "cp ./config/mainnet.json src/config.json && react-scripts start",
"start:custom": "cp ./config/custom-bootstrapped.json src/config.json && react-scripts start",
"build": "react-scripts build",
"build:custom": "cp ./config/custom-bootstrapped.json src/config.json && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"bootstrap": "ts-node -P scripts/tsconfig.json scripts/bootstrap.ts",
"bootstrap:contracts": "ts-node -P scripts/tsconfig.json scripts/bootstrap-contracts-config.ts",
"bootstrap:custom": "yarn bootstrap:contracts custom",
"bootstrap:sandbox": "docker-compose down && docker-compose up -d && yarn bootstrap:contracts sandbox",
"teardown:sandbox": "docker-compose down"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
}
}