-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 3.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "bugle",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"typecheck": "npm run typecheck:letterpress && npm run typecheck:newspaper && npm run typecheck:newsroom && npm run typecheck:prismatic",
"typecheck:letterpress": "npm run typecheck --if-present --workspace=letterpress",
"typecheck:newspaper": "npm run typecheck --if-present --workspace=newspaper",
"typecheck:newsroom": "npm run typecheck --if-present --workspace=newsroom",
"typecheck:prismatic": "npm run typecheck --if-present --workspace=prismatic",
"test": "npm run test:letterpress && npm run test:newspaper && npm run test:newsroom && npm run test:prismatic",
"test:letterpress": "npm run test --if-present --workspace=letterpress",
"test:newspaper": "npm run test --if-present --workspace=newspaper",
"test:newsroom": "npm run test --if-present --workspace=newsroom",
"test:prismatic": "npm run test --if-present --workspace=prismatic",
"test:e2e:newsroom": "npm run test:e2e --if-present --workspace=newsroom",
"test:e2e:newspaper": "npm run test:e2e --if-present --workspace=newspaper",
"lint": "npm run lint:letterpress && npm run lint:newspaper && npm run lint:newsroom && npm run lint:prismatic",
"lint:letterpress": "npm run lint --if-present --workspace=letterpress",
"lint:newspaper": "npm run lint --if-present --workspace=newspaper",
"lint:newsroom": "npm run lint --if-present --workspace=newsroom",
"lint:prismatic": "npm run lint --if-present --workspace=prismatic",
"build:letterpress": "npm run build --workspace=letterpress",
"build:newspaper": "npm run build --workspace=newspaper",
"build:newsroom": "npm run build --workspace=newsroom",
"build:prismatic": "npm run prisma:generate --workspace=prismatic",
"inventorize": "npm start --workspace=bootstrap",
"postinstall": "npm run build:prismatic && npm run build:letterpress",
"prismatic:generate": "dotenv -- npm run prisma:generate --workspace=prismatic",
"prismatic:reset": "dotenv -- npm run prisma:reset --workspace=prismatic",
"prismatic:seed": "dotenv -- npm run prisma:seed --workspace=prismatic",
"prismatic:studio": "dotenv -- npm run prisma:studio --workspace=prismatic",
"prismatic:deploy": "dotenv -- npm run prisma:deploy --workspace=prismatic",
"setup:env": "npm run setup:env:bootstrap && npm run setup:env:newspaper && npm run setup:env:newsroom && npm run setup:env:prismatic",
"setup:env:bootstrap": "npx cpy-cli .env.example './' --cwd=packages/bootstrap --rename=.env",
"setup:env:newspaper": "npx cpy-cli .env.example './' --cwd=packages/newspaper --rename=.env",
"setup:env:newsroom": "npx cpy-cli .env.example './' --cwd=packages/newsroom --rename=.env",
"setup:env:prismatic": "npx cpy-cli .env.example './' --cwd=packages/prismatic --rename=.env",
"start:newspaper": "npm start --workspace=newspaper",
"start:newsroom": "npm start --workspace=newsroom"
},
"private": true,
"workspaces": {
"packages": [
"./packages/*"
]
},
"dependencies": {
"dotenv-cli": "^7.2.1"
},
"devDependencies": {
"cpy-cli": "^4.2.0"
},
"keywords": [],
"author": "",
"license": "ISC"
}