-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1020 Bytes
/
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
{
"name": "pubg",
"version": "1.28.43",
"author": {
"name": "Dominic Kolbe",
"email": "kolbedominic@gmail.com",
"url": "https://dominickolbe.dk"
},
"repository": "git@github.com:dominickolbe/pubg.git",
"homepage": "/~https://github.com/dominickolbe/pubg#readme",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"packages/pubg-frontend",
"packages/pubg-model",
"packages/pubg-server",
"packages/pubg-utils"
],
"scripts": {
"frontend:start": "yarn workspace pubg-frontend start",
"frontend:build": "yarn workspace pubg-frontend build",
"server:dev": "REACT_APP_VERSION=$npm_package_version yarn workspace pubg-server start:dev",
"server:start": "REACT_APP_VERSION=$npm_package_version yarn workspace pubg-server start",
"prettier:check": "prettier --check packages/**/*",
"prettier:fix": "prettier --write packages/**/*",
"test": "yarn run prettier:check"
},
"dependencies": {},
"devDependencies": {
"prettier": "2.6.2"
}
}