This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.28 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
{
"name": "nearswap-interface",
"version": "0.1.0",
"license": "Apache-2.0",
"scripts": {
"build": "parcel build src/index.html --public-url ./",
"build:prod": "rm -rf dist; NODE_ENV=production parcel build src/index.html --public-url ./; rm dist/*.map",
"deploy:pages": "gh-pages -d dist/",
"prestart": "echo OK",
"start": "echo The app is starting! It will automatically open in your browser when ready && echo env-cmd -f ./neardev/dev-account.env && parcel serve src/index.html --open",
"test": "jest test --runInBand",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"babel-jest": "^26.6.3",
"chai": "^4.3.3",
"env-cmd": "^10.1.0",
"gh-pages": "^3.0.0",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"nodemon": "^2.0.7",
"parcel-bundler": "^1.12.4",
"react-test-renderer": "^17.0.1"
},
"dependencies": {
"@emotion/core": "10.0.35",
"@emotion/styled": "10.0.27",
"@walletconnect/web3-provider": "^1.3.6",
"emotion-theming": "10.0.27",
"eslint": "^7.21.0",
"eslint-plugin-react": "^7.22.0",
"immer": "^8.0.1",
"near-api-js": "^0.38.0",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-hook-thunk-reducer": "^0.2.4",
"react-icons": "^4.2.0",
"react-tooltip": "^4.2.15",
"regenerator-runtime": "^0.13.7",
"uncontrollable": "7.1.1",
"web3": "^1.3.4",
"web3modal": "^1.9.3",
"wouter": "^2.7.4"
},
"resolutions": {
"ini": "^2.0.0",
"node-forge": "^0.10.0",
"node-fetch": "^2.6.1"
},
"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"
],
"testPathIgnorePatterns": [
"<rootDir>/assembly/",
"<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"
]
}
}