-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.64 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
{
"name": "near-lockups",
"version": "0.1.2",
"license": "UNLICENSED",
"scripts": {
"build": "npm run build:web",
"build:no-contract": "npm run build:web",
"build:web": "parcel build src/index.html --public-url ./",
"deploy:pages": "gh-pages -d dist/",
"deploy:no-contract": "npm run build:no-contract && npm run deploy:pages",
"deploy": "npm run build && npm run deploy:pages",
"prestart": "npm run build",
"start": "parcel src/index.html --open",
"start:web": "parcel src/index.html --open"
},
"devDependencies": {
"@babel/core": "~7.12.17",
"@babel/preset-env": "~7.12.17",
"@babel/preset-react": "~7.12.13",
"babel-jest": "~26.6.3",
"env-cmd": "~10.1.0",
"gh-pages": "~3.1.0",
"jest": "~26.6.3",
"jest-environment-node": "~26.6.2",
"near-cli": "~1.5.3",
"nodemon": "~2.0.7",
"parcel-bundler": "~1.12.4",
"react-test-renderer": "~17.0.1",
"shelljs": "~0.8.4"
},
"dependencies": {
"@date-io/date-fns": "1.3.11",
"@ledgerhq/hw-transport-webhid": "^6.3.0",
"@ledgerhq/hw-transport-webusb": "^6.3.0",
"@material-ui/core": "^4.9.12 || ^5.0.0-alpha.22",
"@material-ui/data-grid": "4.0.0-alpha.33",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/pickers": "^3.3.10",
"@material-ui/x-grid-data-generator": "4.0.0-alpha.33",
"bn": "^1.0.5",
"bn.js": "^5.2.0",
"bs58": "^4.0.1",
"date-fns": "^2.11.1",
"decimal.js": "^10.2.1",
"js-sha256": "^0.9.0",
"near-api-js": "~0.42.0",
"near-ledger-js": "^0.2.0",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"query-string": "^7.0.1",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-json-view": "^1.21.3",
"react-material-ui-form-validator": "^2.1.4",
"react-number-format": "^4.4.4",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"regenerator-runtime": "~0.13.7"
},
"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"
]
}
}