-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.02 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
{
"name": "elmaz-monorepo",
"version": "0.0.0",
"description": "Unidirectional, functional and robust state management in 800 bytes, a la Elm Architecture",
"main": "index.js",
"repository": "tunnckoCore/elmaz",
"author": "Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "run-s clean:*",
"clean:modules": "rm -rf packages/*/node_modules",
"clean:dest": "rm -rf packages/*/dest",
"fresh": "yarn install",
"prebuild": "run-s clean fresh",
"build": "run-s --silent build:*",
"build:emitter": "cd packages/emitter && yarn build && cd ../../",
"build:actor": "cd packages/create-actor && yarn build && cd ../../",
"build:store": "cd packages/create-store && yarn build && cd ../../",
"build:view": "cd packages/create-view && yarn build && cd ../../",
"build:elmaz": "cd packages/elmaz && yarn build && cd ../../"
},
"devDependencies": {
"run-s": "^0.0.0"
}
}