-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.27 KB
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
{
"name": "stark-dca",
"version": "1.0.0",
"private": true,
"description": "BTC Dollar Cost Averaging protocol on Starknet",
"workspaces": [
"packages/*",
"apps/frontend",
"apps/backend"
],
"scripts": {
"dev:frontend": "npm run dev -w apps/frontend",
"dev:backend": "npm run dev -w apps/backend",
"build:frontend": "npm run build -w apps/frontend",
"build:backend": "npm run build -w apps/backend",
"build:shared": "npm run build -w packages/shared-types",
"build": "npm run build:shared && npm run build:backend && npm run build:frontend",
"test:backend": "npm run test -w apps/backend",
"test:contracts": "cd apps/contracts && snforge test",
"test": "npm run test:backend",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.0",
"typescript": "^5.4.0"
},
"dependencies": {
"jsesc": "^3.1.0",
"mime": "^1.6.0"
}
}