-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "dfinity-icp-contracts",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "^20",
"pnpm": "^8",
"npm": "please-use-pnpm"
},
"repository": {
"type": "git",
"url": "[email protected]:redsteep/dfinity-icp-contracts.git"
},
"scripts": {
"turbo": "dotenv -- turbo --cache-dir=.turbo",
"dev": "pnpm turbo dev",
"build": "pnpm turbo build",
"test": "pnpm turbo test --filter canisters",
"deploy": "pnpm turbo deploy",
"format": "prettier --plugin=prettier-plugin-motoko --write \"packages/**/*.{json,js,jsx,ts,tsx,css,scss,mo}\"",
"preinstall": "npx only-allow pnpm",
"postinstall": "mops install"
},
"dependencies": {
"@dfinity/agent": "^0.21.4",
"@dfinity/assets": "^0.21.4",
"@dfinity/auth-client": "^0.21.4",
"@dfinity/candid": "^0.21.4",
"@dfinity/identity": "^0.21.4",
"@dfinity/principal": "^0.21.4"
},
"devDependencies": {
"@types/node": "^20.11.19",
"dotenv": "^16.4.1",
"dotenv-cli": "^7.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-motoko": "^0.8.4",
"turbo": "^1.12.4",
"typescript": "^5.3.3"
}
}