-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.46 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.46 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "algodon",
"version": "1.0.0",
"description": "ALGODON - Production-ready Replit clone with AI assistance",
"private": true,
"workspaces": [
"web",
"mobile",
"desktop",
"backend-services/*",
"admin-panel",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev:web\" \"npm run dev:mobile\"",
"dev:web": "cd web && npm run dev",
"dev:mobile": "cd mobile && expo start",
"dev:desktop": "cd desktop && npm run electron",
"build": "npm run build:web && npm run build:mobile && npm run build:desktop",
"build:web": "cd web && npm run build",
"build:mobile": "cd mobile && expo build:all",
"build:desktop": "cd desktop && npm run build",
"test": "npm run test:web && npm run test:mobile",
"test:web": "cd web && npm test",
"test:mobile": "cd mobile && npm test",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\""
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.0",
"prettier": "^3.1.0",
"ts-loader": "^9.5.4",
"typescript": "^5.3.2",
"webpack": "^5.105.1",
"webpack-cli": "^6.0.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0"
}
}