This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1.46 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
{
"name": "@your-analytics/monorepo",
"version": "1.0.0",
"description": "An analytis platform to collect events, such as from website visits, user behavior in native apps or IoT-enabled devices.",
"main": "index.js",
"scripts": {
"dev": "run-p dev:*",
"dev:admin-api": "npm run dev --prefix services/admin-api",
"dev:events-api": "npm run dev --prefix services/events-api",
"dev:query-api": "npm run dev --prefix services/query-api",
"dev:website": "npm run dev --prefix services/website",
"install:admin-api": "npm i --prefix services/admin-api",
"install:events-api": "npm i --prefix services/events-api",
"install:events-api-load-testing": "npm i --prefix services/events-api/ya-load-testing",
"install:query-api": "npm i --prefix services/query-api",
"install:website": "npm i --prefix services/website",
"postinstall": "run-p install:*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-analytics-org/your-analytics.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/your-analytics-org/your-analytics/issues"
},
"homepage": "https://github.com/your-analytics-org/your-analytics#readme",
"devDependencies": {
"husky": "^4.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
}
}