forked from ChorusOne/anthem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.8 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
42
43
44
45
{
"name": "anthem",
"version": "0.0.1",
"description": "Anthem by Chorus One",
"author": "Chorus One Team",
"private": true,
"scripts": {
"setup": "lerna run setup",
"dev": "yarn client:dev",
"client:dev": "cd packages/client && yarn dev",
"client:start": "cd packages/client && yarn start",
"client:build": "cd packages/client && yarn build",
"client:prod": "cd packages/client && yarn prod",
"client:test": "cd packages/client && yarn test",
"server:start": "cd packages/server && yarn start",
"server:build": "cd packages/server && yarn build",
"server:test": "cd packages/server && yarn test",
"utils:watch": "cd packages/utils && yarn watch",
"utils:build": "cd packages/utils && yarn build",
"utils:test": "cd packages/utils && yarn test",
"lint": "lerna run lint",
"format": "lerna run format",
"tsc": "lerna run tsc",
"test": "lerna run test",
"build": "lerna run build",
"i18n": "cd packages/client && yarn i18n",
"cypress": "cd packages/cypress && yarn cypress:run",
"cypress:run": "cd packages/cypress && yarn cypress run",
"cypress:open": "cd packages/cypress && yarn cypress open",
"cypress:dev": "cd packages/client && yarn cypress:dev",
"test:ci": "cd packages/cypress && yarn cypress:ci",
"types": "cd packages/utils && yarn build:types && yarn format && yarn build",
"recording": "cd packages/server && yarn recording",
"record": "cd packages/utils && yarn record",
"schema:update": "cd packages/server && yarn schema:update",
"docker:build": "docker build -t anthem-dependencies -f Dockerfile .",
"docker:cypress": "docker-compose -f packages/cypress/docker-compose.yml up --abort-on-container-exit"
},
"devDependencies": {
"lerna": "^3.19.0"
},
"workspaces": [
"packages/*"
]
}