-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "simple counter contract with overflow checks",
"version": "1.0.0",
"scripts": {
"build": "cargo build --target wasm32-unknown-unknown --release",
"deploy:dev": "npm run build && near dev-deploy res/counter.wasm",
"dev": "npm run deploy:dev && npm start",
"start": "npm run build && npm run build:web && env-cmd -f ./neardev/dev-account.env parcel ./frontend/index.html",
"postbuild": "cp target/wasm32-unknown-unknown/release/counter.wasm ./res/"
},
"author": "Emmitt Luhning",
"dependencies": {
"big.js": "^5.2.2",
"borsh": "^0.4.0",
"env-cmd": "^10.1.0",
"near-api-js": "^0.43.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"cssnano": "^5.0.7",
"gh-pages": "^3.1.0",
"parcel-bundler": "^1.12.5",
"postcss": "^8.3.6",
"sass": "^1.37.0"
},
"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"
]
}
}