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