-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 966 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 966 Bytes
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
{
"scripts": {
"make-admin": "npx ts-node -e 'require(\"./lib/keys.ts\").generateKey(\"admin\")'",
"deploy:local": "dfx start --emulator --background --clean && ./.scripts/dfx-deploy",
"test": "mocha --timeout 60000 -r ts-node/register 'tests/**/*.ts'",
"test:dfx": "npm run deploy:local && npm test && dfx stop",
"chaos": "CHAOS=true mocha --timeout 3600000 -r ts-node/register 'tests/chaos.test.ts'",
"chaos:dfx": "npm run deploy:local && npm run chaos && dfx stop"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"mocha": "^9.2.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@dfinity/agent": "^0.11.0",
"@dfinity/candid": "^0.11.0",
"@dfinity/identity": "^0.11.0",
"@dfinity/principal": "^0.11.0",
"isomorphic-fetch": "^3.0.0",
"js-sha256": "^0.9.0"
}
}