-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 2.41 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
60
{
"name": "taqueria-scaffold-taco-shop",
"version": "1.2.0",
"description": "A full stack Taqueria dApp that developers can use as a starting point for building their own Tezos dApps",
"scripts": {
"setup": "npm run setup:taqueria && npm run setup:app",
"setup:taqueria": "npm install && taq init",
"setup:app": "cd ./app && npm install",
"start:app": "cd app && npm run start",
"start:sandbox": "taq start sandbox",
"start": "npm run compile:contract && npm run start:sandbox && npm run originate && npm run start:app",
"compile:contract": "taq compile --plugin ligo hello-tacos.mligo",
"df-docker": "docker system df",
"rm-docker": "docker rm -vf $(docker ps -aq) 2>&1 > /dev/null",
"test:unit": "taq test hello-tacos.test.mligo --plugin @taqueria/plugin-ligo",
"originate": "taq originate hello-tacos.tz -e development --sender alice",
"test:integration": "taq originate hello-tacos.tz --env development && npx jest -- hello-tacos-integration.spec.ts",
"test:front-end": "npx jest --verbose --noStackTrace -- App.test.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TezosTaqueria/taqueria-scaffold-taco-shop.git"
},
"keywords": [],
"author": "Trilitech",
"license": "MIT",
"bugs": {
"url": "https://github.com/TezosTaqueria/taqueria-scaffold-taco-shop/issues"
},
"homepage": "https://github.com/TezosTaqueria/taqueria-scaffold-taco-shop#readme",
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/console": "^29.4.1",
"@taqueria/plugin-contract-types": "latest",
"@taqueria/plugin-core": "latest",
"@taqueria/plugin-tezbox": "latest",
"@taqueria/plugin-jest": "latest",
"@taqueria/plugin-ligo": "latest",
"@taqueria/plugin-smartpy": "latest",
"@taqueria/plugin-taquito": "latest",
"@taqueria/toolkit": "latest",
"@taquito/rpc": "^21.0.0",
"@taquito/signer": "^21.0.0",
"@taquito/taquito": "^21.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.11.18",
"babel-jest": "^29.4.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.3.1",
"node-fetch": "^3.3.0",
"rambda": "^7.4.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1"
},
"main": "index.js"
}