-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 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
{
"name": "protea-v2",
"version": "0.1.0",
"description": "Protea V2",
"scripts": {
"build": "yarn wsrun build --stages",
"build:webapp": "yarn wsrun -p WebApp build",
"build:apiserver": "yarn wsrun -p ApiServer build",
"build:blockchain": "cd Blockchain && yarn build && cd ..",
"start:db": "docker start apidb",
"start:dev": "yarn wsrun start:dev --parallel",
"test:webapp": "cd Webapp && yarn test:watch",
"clean": "rm -rf ./node_modules && rm -rf ./*/node_modules"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/linumlabs/proteav2.git"
},
"private": true,
"workspaces": {
"packages": [
"ApiServer",
"WebApp"
],
"nohoist": [
"**/*"
]
},
"devDependencies": {
"chalk": "^2.0.1",
"wsrun": "^2.2.1"
},
"resolutions": {
"**/hoist-non-react-statics": "^3.0.1"
},
"keywords": [
"NodeJS",
"NestJS",
"React",
"Redux",
"Mongoose",
"Monorepo",
"Ethers",
"Etherlime"
],
"author": "Linum Labs",
"license": "MIT",
"homepage": "https://gitlab.com/linumlabs/proteav2#readme",
"engines": {
"node": ">=8.0",
"yarn": ">=1.9.4"
},
"dependencies": {
}
}