-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 978 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
{
"name": "realworld-examples",
"version": "0.0.1",
"author": "Leonid Fedorov <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"format": "yarn workspaces run format",
"prepare:api": "yarn workspace @project/api prepare",
"prepare:ui": "yarn workspace @project/ui prepare",
"build:effector": "yarn workspace @project/effector build",
"build:effector-razzle": "yarn workspace @project/effector-razzle build",
"build:sagun": "yarn workspace @project/sagun build",
"start:effector": "yarn workspace @project/effector start",
"start:effector-razzle": "yarn workspace @project/effector-razzle start",
"start:sagun": "yarn workspace @project/sagun start"
},
"devDependencies": {
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}