-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"name": "icebreak",
"version": "0.0.0",
"scripts": {
"app:ios": "yarn workspace app ios",
"app:android": "yarn workspace app android",
"app:start": "yarn workspace app start",
"app:dev": "yarn workspace app dev",
"app:test": "yarn workspace app test",
"app:link": "cd packages/app/ios; pod install;",
"server:start": "yarn workspace server start",
"server:dev": "yarn workspace server dev",
"server:test": "yarn workspace server test",
"port:forward": "yarn workspace server forward",
"reset": "find . -type dir -name node_modules | xargs rm -rf && yarn",
"dev": "node ./scripts/run.js",
"postinstall": "husky"
},
"description": "organization engagement platform",
"main": "index.js",
"author": "SEA",
"license": "MIT",
"packageManager": "yarn@1.22.19",
"devDependencies": {
"@commitlint/cli": "19.2.0",
"@commitlint/config-conventional": "19.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5"
},
"repository": "https://github.com/cppsea/icebreak.git"
}