-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.12 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.12 KB
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
{
"name": "incentivesalpha",
"version": "1.0.1",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "npm run bootstrap",
"cz": "git-cz",
"frontend:start": "lerna run --scope=@incentivesalpha/front-end --stream start",
"frontend:build": "lerna run --scope=@incentivesalpha/front-end --stream build",
"frontend:eject": "lerna run --scope=@incentivesalpha/front-end --stream eject",
"frontend:test": "lerna run --scope=@incentivesalpha/front-end --stream test",
"contracts:build": "lerna run --scope=@incentivesalpha/smart-contracts --stream build",
"contracts:deploy:local": "lerna run --scope=@incentivesalpha/smart-contracts --stream deploy:local",
"contracts:deploy:sokol": "lerna run --scope=@incentivesalpha/smart-contracts --stream deploy:sokol",
"contracts:start": "lerna run --scope=@incentivesalpha/smart-contracts --stream start",
"contracts:test": "lerna run --scope=@incentivesalpha/smart-contracts --stream test",
"contracts:cover": "lerna run --scope=@incentivesalpha/smart-contracts --stream cover",
"backend:start": "lerna run --scope=@incentivesalpha/back-end --stream start",
"backend:test": "lerna run --scope=@incentivesalpha/back-end --stream test",
"backend:build": "lerna run --scope=@incentivesalpha/back-end --stream build",
"backend:dev": "lerna run --scope=@incentivesalpha/back-end --stream dev",
"backend:prod": "lerna run --scope=@incentivesalpha/back-end --stream prod"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"workspaces": [
"packages/*"
],
"dependencies": {
"eslint": "^6.1.0",
"homedir": "^0.6.0",
"lerna": "^3.18.3"
},
"devDependencies": {
"cz-conventional-changelog": "^3.0.2",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0"
},
"repository": "https://github.com/RibbonBlockchain/IncentivesAlpha.git",
"author": "Ribbon Blockchain Engineers",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}