-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.7 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
{
"name": "icrc1_payment_client_demo",
"version": "0.2.0",
"private": true,
"description": "Motoko Adaption of BNT-3 ICRC1 Compliant Payment Flow with web workers, Tailwind & demonstrating the setup for a full-stack decentralized app for processing payments at point of sale",
"type": "module",
"author": "Ashton Engberg <[email protected]> (https://github.com/atengberg)",
"keywords": [
"Internet Computer",
"Motoko",
"React",
"React Hooks",
"JavaScript",
"Canister",
"Vite",
"Tailwind",
"Web Workers",
"Internet Identity",
"AuthClient",
"ICRC1 Token Standard",
"Point of Sale"
],
"scripts": {
"ci:all": "cd src/frontend; npm ci --legacy-peer-deps; cd ../..; cd src/test; npm ci --legacy-peer-deps; cd ../..; cd src/workbench; npm ci --legacy-peer-deps; cd ../..; npm ci --legacy-peer-deps",
"test": "npm run ci:all; node ./setup.js --testing; cd src/test; npm run test:auto",
"setup": "npm run ci:all; node ./setup.js",
"build": "cd src/frontend; npm run build",
"start": "run-p frontend backend",
"backend": "mo-dev --generate --deploy -y",
"frontend": "cd src/frontend; npm run start",
"lint": "cd src/frontend; npm run lint",
"sources": "mops sources",
"postinstall": "mops install"
},
"engines": {
"node": "^12 || ^14 || ^16 || ^18"
},
"dependencies": {
"@dfinity/agent": "^0.17.0",
"@dfinity/candid": "^0.17.0",
"@dfinity/ledger": "^0.0.11",
"@dfinity/principal": "^0.17.0",
"@dfinity/utils": "^0.0.18",
"common-tags": "^1.8.2",
"dotenv": "^16.3.1",
"ic-mops": "^0.19.1",
"mo-dev": "^0.10.1",
"zx": "^7.2.3"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}