-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
59 lines (59 loc) · 1.82 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
59
{
"name": "insights-build",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Self-Hosted \"SQL-not-required\" data analytics and visualisation tool.",
"version": "0.0.31",
"homepage": "https://github.com/mariusandra/insights",
"main": "server",
"license": "MIT",
"keywords": [
"feathers",
"insights"
],
"author": {
"name": "Marius Andra",
"email": "[email protected]"
},
"contributors": [],
"repository": "mariusandra/insights",
"bugs": {},
"directories": {
"lib": "server"
},
"engines": {
"node": ">= 8.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"desktop": "cd packages/insights-desktop && yarn run start",
"init": "rm -rf .insights && ./packages/insights/bin/insights-init --dev",
"init-no-login": "rm -rf .insights && ./packages/insights/bin/insights-init --dev --no-login",
"start": "concurrently --kill-others \"yarn run start-api\" \"yarn run start-web\" \"yarn run start-charts\"",
"start-api": "cd packages/insights-api && yarn start",
"start-charts": "cd packages/insights-charts && yarn start",
"start-web": "cd packages/insights-web && yarn start",
"build": "concurrently \"yarn run build-api\" \"yarn run build-web\" \"yarn run build-charts\"",
"build-api": "cd packages/insights-api && yarn run compile",
"build-charts": "cd packages/insights-charts && yarn run build",
"build-web": "cd packages/insights-web && yarn run build",
"createsuperuser": "cd packages/insights && ./bin/insights-createsuperuser"
},
"files": [
"bin",
"README.md"
],
"dependencies": {
"insights-api": "*",
"insights-charts": "*",
"insights-web": "*"
},
"peerDependencies": {},
"devDependencies": {
"concurrently": "^5.0.2",
"eslint-config-standard-react": "^9.2.0",
"semver": "^7.1.1"
}
}