-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.87 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
{
"name": "foxic",
"private": true,
"author": "AstroX <[email protected]>",
"license": "(Apache-2.0 AND MIT)",
"scripts": {
"canisters:build": "node ./dist/scripts/builder.js && pnpm run format:idl",
"canisters:build:idl": "node ./dist/scripts/builder.js --idl && pnpm run format:idl",
"canisters:deploy": "node ./dist/scripts/deployer.js --clean",
"canisters:upgrade": "node ./dist/scripts/deployer.js",
"canisters:script": "swc ./scripts -d dist/scripts",
"canisters:run": "pnpm run canisters:script && pnpm run canisters:build && pnpm run canisters:deploy",
"format:idl": "prettier --write clients/idls/**/*.{js,ts}",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"wallet:upload:production": "NODE_ENV=production NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@dfinity/agent": "^0.11.3",
"@dfinity/candid": "^0.11.3",
"@dfinity/identity": "^0.11.3",
"@dfinity/principal": "^0.11.3",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.141",
"@swc/jest": "^0.2.20",
"bip32": "^3.0.1",
"bip39": "^3.0.4",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"react-lottie": "^1.2.3",
"starkbank-ecdsa": "^1.1.4",
"tiny-secp256k1": "^2.2.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.18",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": ">=6",
"jest": "^27.4.1",
"lint-staged": ">=10",
"prettier": "^2.6.2",
"shelljs": "^0.8.5",
"ts-node": "^10.5.0",
"tsc-alias": "^1.6.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"_moduleAliases": {
"@idls": "clients/idls"
}
}