-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 977 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
28
29
30
31
32
33
34
35
{
"scripts": {
"test": "npx jest",
"test:dfx": "npm run deploy:local && npm t && dfx stop && rm -r .dfx",
"deploy:local": "dfx start --emulator --background --clean && .scripts/deploy",
"interface": "./.scripts/copy-interface",
"make-admin": "npx ts-node -e 'require(\"./.harness/keys/keys.ts\").generateKey(\"admin\")'"
},
"devDependencies": {
"@dfinity/agent": "^0.11.1",
"@dfinity/candid": "^0.11.1",
"@dfinity/principal": "^0.11.1",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.32",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"ictool": "^0.0.2",
"mocha": "^9.2.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@dfinity/identity": "^0.11.0",
"@supercharge/promise-pool": "^2.1.0",
"isomorphic-fetch": "^3.0.0",
"js-sha256": "^0.9.0"
},
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}