-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 2.17 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
{
"name": "cheddar-ui-v1",
"version": "1.0.0",
"license": "UNLICENSED",
"description": "web front-ent for cheddar",
"repository": "https://github.com/alpha-fi/cheddar-ui-v1",
"homepage": "https://alpha-fi.github.io/cheddar-ui-v1",
"scripts": {
"precompile": "npm run build:prod",
"compile": "gh-pages -d dist-prod/",
"build:tsc": "tsc --noEmit",
"build:prod": "rm -rf dist-prod && parcel build src/index.html --no-cache --log-level verbose --public-url ./ --dist-dir dist-prod",
"deploy:pages": "gh-pages -d dist/",
"start:dev": "echo The app is starting! It will automatically open in your browser when ready && parcel src/index.html --open",
"start": "echo The app is starting! It will automatically open in your browser when ready && parcel --no-cache src/index.html --open",
"test": "npm run build:contract:debug && cd contract && npm run test && cd .. && jest test --runInBand",
"serve:design": "cd src && python3 -m http.server"
},
"devDependencies": {
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typescript": "^4.2.3",
"url": "^0.11.0"
},
"dependencies": {
"@near-wallet-selector/core": "^8.5.4",
"@near-wallet-selector/here-wallet": "^8.5.4",
"@near-wallet-selector/meteor-wallet": "^8.5.4",
"@near-wallet-selector/mintbase-wallet": "^8.5.4",
"@near-wallet-selector/modal-ui": "^8.5.4",
"@near-wallet-selector/my-near-wallet": "^8.5.4",
"@near-wallet-selector/nightly": "^8.5.4",
"@near-wallet-selector/sender": "^8.5.4",
"@types/bn.js": "^5.1.0",
"@types/jquery": "^3.5.14",
"bn.js": "^5.0.0",
"fs": "0.0.1-security",
"js-big-decimal": "^1.3.4",
"near-api-js": "^1.0.0",
"parcel": "^2.6.2",
"party-js": "^2.2.0"
},
"browserslist": [
"Since 2018"
],
"jest": {
"testEnvironment": "near-cli/test_environment",
"testPathIgnorePatterns": [
"<rootDir>/contract/",
"<rootDir>/node_modules/"
]
}
}