-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "codefiction-stats-graphql",
"private": true,
"version": "1.0.0",
"description": "Codefiction Podcast statistics application using Graphql and React components.",
"main": "index.js",
"scripts": {
"build": "lerna run build --parallel",
"dev": "lerna run dev --parallel",
"deploy": "lerna run deploy",
"start": "lerna run --scope stats-lambda start",
"start:react": "lerna run --scope stats-pages start",
"start:all": "lerna run start",
"test": "lerna run --stream --concurrency 1 test",
"bootstrap": "lerna bootstrap",
"lint": "lerna run lint --parallel",
"lint-autofix": "lerna run lint-autofix --parallel"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/msusur/codefiction-stats-graphql.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/msusur/codefiction-stats-graphql/issues"
},
"homepage": "https://codefiction.tech",
"devDependencies": {
"lerna": "^3.13.1",
"husky": "^1.3.1"
}
}