-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 926 Bytes
/
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
{
"name": "etdstats",
"version": "1.2.0",
"main": "index.js",
"private": true,
"repository": "https://github.com/etherdata-blockchain/etdstats.git",
"author": "sirily11 <sirily1997@gmail.com>",
"license": "MIT",
"workspaces": [
"apps",
"services",
"packages"
],
"dependencies": {
"turbo": "^1.3.0"
},
"devDependencies": {
"ts-node": "^10.8.1",
"@types/node": "^18.0.0",
"webpack": "^5.73.0",
"typescript": "^4.7.4",
"glob": "^8.0.3",
"@types/glob": "latest",
"release-it": "^15.1.0",
"@release-it/conventional-changelog": "^5.0.0",
"@release-it/bumper": "^4.0.0",
"prettier": "^2.7.1"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"dev": "turbo run dev",
"start": "turbo run start",
"release": "release-it",
"release-dry": "release-it --dry-run",
"lint": "prettier --check **/*/*.ts"
}
}