-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.31 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
41
42
43
44
45
46
47
{
"name": "steam-trader",
"version": "2.1.1",
"description": "An deployment ready and automated steam trade client!",
"license": "GPL-3.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ArthurFiorette/steam-trader.git"
},
"author": "Arthur Fiorette",
"bugs": {
"url": "https://github.com/ArthurFiorette/steam-trader/issues"
},
"homepage": "https://github.com/ArthurFiorette/steam-trader#readme",
"workspaces": {
"nohoist": [
"**"
],
"packages": [
"web",
"app"
]
},
"scripts": {
"build": "concurrently \"yarn:build:*\"",
"build:app": "cd app && yarn run build",
"build:web": "cd web && yarn run build",
"start": "concurrently \"yarn:start:*\"",
"start:app": "cd app && yarn start",
"start:web": "cd web && yarn start",
"lint": "concurrently \"yarn:lint:*\"",
"lint:app": "cd app && yarn lint",
"lint:web": "cd web && yarn lint",
"prettify": "prettier --write .",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"devDependencies": {
"@arthurfiorette/prettier-config": "^1.0.6",
"auto-changelog": "^2.3.0",
"concurrently": "^6.2.1",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.4",
"typescript": "^4.4.3",
"yarn": "^1.22.11"
}
}