-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "my-near-app",
"version": "1.0.0",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"start": "parcel index.html --open --port 3001",
"build": "parcel build index.html --public-url ./"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@types/node": "^18.6.2",
"ava": "^4.2.0",
"buffer": "^6.0.3",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.16",
"parcel": "^2.6.0",
"process": "^0.11.10",
"react-test-renderer": "^18.1.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"dependencies": {
"axios": "^0.27.2",
"near-api-js": "^0.44.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"regenerator-runtime": "^0.13.9"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}