-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.43 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
{
"name": "mindapp",
"description": "Mindapp is the open source thought organizer",
"engines": {
"node": ">=20.12.2"
},
"scripts": {
"client": "cd client && npm run dev",
"external": "cd client && npm run external",
"local": "cd server && npm run local",
"global-dev": "cd server && npm run global-dev",
"dk-studio": "cd server && npx drizzle-kit studio",
"dev-extension": "cd extension && npm run dev",
"build-extension": "cd extension && npm run build",
"all": "concurrently \"npm run local\" \"npm run global-dev\" \"npm run client\" \"npm run dev-extension\" \"npm run dk-studio\"",
"normie": "concurrently \"npm run global-dev\" \"npm run external\" \"npm run dk-studio\"",
"spaces": "concurrently \"npm run local\" \"npm run global-dev\" \"npm run client\" \"npm run dk-studio\"",
"local-space": "concurrently \"npm run local\" \"npm run client\" \"npm run dk-studio\"",
"start": "concurrently \"npm run local\" \"npm run client\"",
"deploy-server": "cd server && npm run deploy",
"deploy": "git push && cd server && npm run deploy",
"format": "prettier . --write"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"useTabs": true,
"trailingComma": "all"
},
"devDependencies": {
"concurrently": "8.2.2",
"prettier": "3.2.4"
},
"author": {
"name": "Michael Leung",
"email": "[email protected]",
"url": "https://mindapp.cc/?q=@2AdtePvSVUGJET9LZ4yVeoey6FiLhYiJiLZpCXvU8wXKT"
}
}