-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "popspace-monorepo",
"private": true,
"workspaces": [
"file-upload",
"hermes",
"noodle",
"noodle-api",
"noodle-shared",
"unicorn",
"unicorn/component"
],
"resolutions": {
"babel-loader": "8.1.0",
"jest": "26.6.0",
"webpack": "4.44.2"
},
"scripts": {
"precontainerize": "yarn build-lib && yarn build",
"build": "concurrently npm:build:*",
"build-lib": "concurrently npm:build-lib:*",
"build:app": "yarn workspace noodle-app build",
"build:unicorn": "yarn workspace unicorn build",
"build-lib:shared": "yarn workspace @withso/noodle-shared build",
"build-lib:files": "yarn workspace @withso/file-upload build",
"build-lib:unicorn:component": "yarn workspace @withso/unicorn build",
"dev": "concurrently npm:dev:*",
"dev:app": "yarn workspace noodle-app dev",
"dev:api": "yarn workspace noodle-api dev",
"dev:hermes": "yarn workspace hermes dev",
"dev:unicorn": "yarn workspace unicorn dev",
"db-init": "yarn workspace @withso/noodle-shared db:init"
},
"devDependencies": {
"concurrently": "^6.4.0"
},
"volta": {
"node": "16.16.0",
"yarn": "1.22.11"
}
}