-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.26 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
{
"name": "cookdapp",
"version": "0.1.0",
"license": "UNLICENSED",
"scripts": {
"build": "npm run build:contract && npm run build:web",
"build:contract": "cd contracts/assembly-contract && node compile.js",
"build:contract:debug": "node contracts/assembly-contract/compile.js --debug",
"build:web": "parcel build frontend/src/public/index.html --public-url ./",
"dev:deploy:contract": "near dev-deploy",
"deploy:contract": "near deploy",
"prestart": "npm run build:contract:debug && npm run dev:deploy:contract",
"start": "echo The app is starting! It will automatically open in your browser when ready && cd ./frontend && npm start",
"dev": "nodemon --watch contracts -e ts --exec \"npm run start\"",
"test": "npm run build:contract:debug && cd contracts/assembly-contract && npm run test && cd .. && jest test --runInBand"
},
"devDependencies": {
"@babel/core": "~7.14.0",
"@babel/preset-env": "~7.14.0",
"env-cmd": "~10.1.0",
"jest": "26.6.0",
"jest-environment-node": "~26.6.2",
"near-cli": "~2.1.1",
"nodemon": "~2.0.3",
"shelljs": "~0.8.4"
},
"dependencies": {
"regenerator-runtime": "~0.13.5"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
}
}