-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.81 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": "my-dapp-template",
"version": "0.1.0",
"license": "GPL",
"workspaces": [
"frontend"
],
"scripts": {
"build": "npm run clean:windows && npm run clean:unix && npx --yes tsc --build .",
"clean:unix": "node -e \"if (process.platform !== 'win32') process.exit(1)\" || rm -rf dist",
"clean:windows": "node -e \"if (process.platform === 'win32') process.exit(1)\" || , if exist dist rmdir /Q /S dist",
"devnet:start": "npx --yes @alephium/cli@latest devnet start",
"devnet:stop": "npx --yes @alephium/cli@latest devnet stop",
"compile": "npx --yes @alephium/cli@latest compile",
"deploy:devnet": "npx --yes @alephium/cli@latest deploy -n devnet",
"deploy:testnet": "npx --yes @alephium/cli@latest deploy -n testnet",
"deploy:mainnet": "npx --yes @alephium/cli@latest deploy -n mainnet",
"deploy:tokens": "npx ts-node scripts/devnet.ts",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --fix --ext ts",
"test": "jest -i --config ./jest-config.json"
},
"dependencies": {
"@alephium/cli": "0.40.0",
"@alephium/web3": "0.40.0",
"@alephium/web3-test": "0.40.0",
"@alephium/web3-wallet": "0.40.0",
"bs58": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^16.18.23",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "~5.3.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"bracketSameLine": false,
"trailingComma": "none"
}
}