-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
57
58
59
{
"name": "alephium-example",
"version": "0.1.0",
"license": "GPL",
"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",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --fix --ext ts",
"test": "jest -i --config ./jest-config.json"
},
"prettier": {
"bracketSameLine": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"dependencies": {
"@alephium/cli": "0.2.0-rc.37",
"@alephium/web3": "0.2.0-rc.37",
"@alephium/web3-test": "0.2.0-rc.37",
"@alephium/web3-wallet": "0.2.0-rc.37"
},
"devDependencies": {
"@types/elliptic": "^6.4.13",
"@types/jest": "^27.5.1",
"@types/node": "^16.7.8",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"ts-node": "^10.9.1",
"eslint": "^7.32.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"
}
}