-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "se",
"version": "1.0.0",
"description": "ACME Stock Exchange",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"cross-env": "^7.0.2",
"husky": "^4.3.0",
"lerna": "^3.22.1"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --parallel",
"tscw": "lerna run --parallel tscw",
"lint": "lerna run lint --parallel",
"start": "lerna run start --parallel",
"build-watch": "yarn run build && yarn run tscw",
"test": "lerna run test --parallel",
"prod:build": "yarn run build && lerna run prod:build --stream",
"prod:start": "cross-env NODE_ENV=production lerna run start --scope=@se/api --stream",
"release": "cross-env HUSKY_BYPASS=true lerna publish"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --parallel precommit",
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"keywords": [
"stockexchange",
"stocks",
"equity",
"sharemarket",
"stockmarket"
],
"author": "Jovin Jijo ([email protected])"
}