-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "my-dapp-template",
"version": "0.1.0",
"license": "GPL",
"scripts": {
"build": "npm run clean && npx --yes tsc --build .",
"clean": "npm run clean:windows && npm run clean:unix",
"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",
"compile": "npx cli compile",
"deploy": "npx cli deploy",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --fix --ext ts",
"test": "jest -i --config ./jest-config.json"
},
"dependencies": {
"@alephium/cli": "^1.8.0",
"@alephium/web3": "^1.8.0",
"@alephium/web3-test": "^1.8.0",
"@alephium/web3-wallet": "^1.8.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": "^4.0.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"bracketSameLine": false,
"trailingComma": "none"
}
}