-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "instant-auction",
"version": "1.0.0",
"description": "A modern auction platform for trading goods.",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/typeorm",
"**/typeorm/**",
"**/expo",
"**/expo",
"**/expo**",
"**/@types/",
"**/react-native",
"**/react-native/**react**/",
"**/react-native/**react**/**"
]
},
"scripts": {
"dev": "concurrently \"cd packages/server && yarn dev\" \"cd packages/web && yarn dev\"",
"dev:mobile": "concurrently \"cd packages/mobile && yarn start\" \"cd packages/server && yarn dev\"",
"gen": "cd packages/client-controllers/ && yarn gen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timthedev07/InstantAuction.git"
},
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/timthedev07/InstantAuction/issues"
},
"homepage": "https://github.com/timthedev07/InstantAuction#readme"
}