-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 845 Bytes
/
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
{
"name": "decentral_perk",
"version": "0.1.0",
"description": "Internet Computer starter application",
"keywords": [
"Internet Computer",
"Motoko",
"Svelte",
"Canister",
"Internet Identity"
],
"scripts": {
"build": "cd src/decentral_perk_assets && npm run build",
"prebuild": "npm run copy:types",
"dev": "cd src/decentral_perk_assets && npm run dev",
"prestart": "npm run copy:types",
"copy:types": "rsync -avr .dfx/$(echo ${DFX_NETWORK:-'**'})/canisters/** --exclude='assets/' --exclude='idl/' --exclude='*.wasm' --delete src/declarations"
},
"dependencies": {
"@dfinity/agent": "^0.13.1",
"@dfinity/auth-client": "^0.10.1",
"@dfinity/authentication": "^0.10.2",
"@dfinity/candid": "^0.10.2",
"@dfinity/identity": "^0.10.1",
"@dfinity/principal": "0.10.1"
}
}