forked from WorldsOfBabylon/clubhouse
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 982 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
29
30
31
32
33
34
35
36
37
{
"name": "clubhouse",
"private": true,
"version": "0.2.0",
"description": "Clubhouse API client and social graph crawler.",
"repository": "transitive-bullshit/clubhouse",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"workspaces": [
"packages/*",
"examples/"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"start": "tsc --build tsconfig.json --watch",
"pretest": "run-s build",
"test": "run-s test:*",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check",
"prebuild": "run-s clean",
"clean": "del packages/*/build",
"dev": "run-s start",
"bootstrap": "lerna bootstrap",
"prepublish": "run-s build",
"publish": "lerna publish",
"postinstall": "run-s bootstrap"
},
"devDependencies": {
"del-cli": "^3.0.1",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}