-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.88 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.88 KB
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
{
"name": "moonbase-frontend",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build-contract": "asb --target debug",
"deploy-contract": "yarn build-contract && near dev-deploy ./build/debug/contract.wasm",
"clean-contract": "rm -rf ./build && rm -rf ./neardev",
"run-contract": "./contract/scripts/run.sh"
},
"dependencies": {
"@next/font": "13.1.6",
"@nextui-org/react": "^1.0.0-beta.12",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"near-api-js": "^1.1.0",
"next": "13.1.6",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.5",
"decimal.js": "^10.2.1",
"markdown-it": "^13.0.1",
"mdbreact": "^5.0.0",
"near-api-js": "^0.44.2",
"node-fetch": "^2.6.1",
"node-libs-browser": "^2.2.1",
"react-json-view": "^1.21.3",
"react-markdown-editor-lite": "^1.3.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.5",
"regenerator-runtime": "^0.13.11",
"stringify-object": "^3.3.0",
"utils": "^0.3.1"
},
"devDependencies": {
"near-sdk-as": "^3.2.3",
"@babel/core": "~7.12.3",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "~7.12.5",
"babel-jest": "~26.6.2",
"env-cmd": "^10.1.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"gh-pages": "^3.1.0",
"jest": "~26.6.2",
"jest-environment-node": "~26.6.2",
"near-cli": "^1.5.2",
"nodemon": "~2.0.3",
"parcel-bundler": "^1.12.5",
"prettier": "^2.6.2",
"react-test-renderer": "~17.0.1",
"shelljs": "~0.8.4"
}
}