This repository has been archived by the owner on Apr 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.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
{
"homepage": "http://quicswap.github.io/multicall-UI",
"name": "multicall-UI",
"version": "0.1.0",
"license": "UNLICENSED",
"scripts": {
"build": "yarn build:web",
"build:web": "parcel build src/index.html --public-url ./",
"deploy:pages": "gh-pages -d dist/",
"deploy": "yarn build && yarn deploy:pages",
"start": "echo The app is starting! It will automatically open in your browser when ready && parcel src/index.html --open",
"dev": "nodemon --watch contract -e ts --exec \"yarn start\"",
"test": "jest test --runInBand"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-react": "^7.16.7",
"@parcel/transformer-sass": "^2.4.1",
"@types/bn.js": "^5.1.0",
"babel-jest": "^27.5.1",
"env-cmd": "~10.1.0",
"gh-pages": "^3.2.3",
"jest": "^27.5.1",
"jest-environment-node": "^27.5.1",
"near-cli": "^3.0.0",
"nodemon": "~2.0.3",
"process": "^0.11.10",
"react-test-renderer": "~17.0.1",
"sass": "^1.43.3",
"shelljs": "~0.8.4",
"typescript": "^4.5.2",
"util": "^0.12.4"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.16.3",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.0",
"@mui/lab": "^5.0.0-alpha.58",
"@mui/material": "^5.0.0",
"@types/react": "^16.8.6 || ^17.0.0",
"bn.js": "^5.2.0",
"date-fns": "^2.25.0",
"dayjs": "^1.10.7",
"js-base64": "^3.7.2",
"luxon": "^1.28.0 || ^2.0.0",
"moment": "^2.29.1",
"near-api-js": "^0.44.2",
"parcel": "^2.4.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-router-dom": "6",
"regenerator-runtime": "^0.13.9"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/src/__mocks__/fileMock.js"
},
"setupFiles": [
"<rootDir>/src/jest.init.js"
],
"testEnvironment": "near-cli/test_environment",
"testPathIgnorePatterns": [
"<rootDir>/contract/",
"<rootDir>/node_modules/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}