-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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": "etdstats",
"version": "1.16.2",
"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.6.3"
},
"devDependencies": {
"ts-node": "^10.9.1",
"@types/node": "^18.11.9",
"webpack": "^5.74.0",
"typescript": "^4.8.4",
"glob": "^8.0.3",
"@types/glob": "latest",
"release-it": "^15.5.0",
"@release-it/conventional-changelog": "^5.1.1",
"@release-it/bumper": "^4.0.0",
"prettier": "^2.7.1",
"@playwright/test": "1.27.1",
"wait-on": "6.0.1",
"firebase-admin": "11.2.0"
},
"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",
"e2e": "npx playwright test"
}
}