-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.62 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@grumpycorp/warm-and-fuzzy",
"private": true,
"description": "WarmAndFuzzy root project",
"repository": {
"type": "git",
"url": "https://github.com/rgiese/warm-and-fuzzy.git"
},
"license": "CC-BY-NC-SA-4.0",
"author": "[email protected]",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run --concurrency 1 build --stream",
"build:shared": "lerna run build --scope \"@grumpycorp/warm-and-fuzzy-shared*\" --stream",
"decrypt-secrets": "lerna run decrypt-secrets --parallel",
"encrypt-secrets": "lerna run encrypt-secrets --parallel",
"format:fix": "lerna run format:fix --parallel",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"deploy:dev": "lerna run deploy:dev --stream",
"deploy:prod": "lerna run deploy:prod --stream",
"deploy-mobile:dev": "lerna run deploy-mobile:dev --stream",
"deploy-mobile:prod": "lerna run deploy-mobile:prod --stream",
"deploy-firmware:prod": "lerna run deploy-firmware:prod --stream",
"start:local:dev": "lerna run start:local:dev --stream",
"start:local:prod": "lerna run start:local:prod --stream",
"start:remote:dev": "lerna run start:remote:dev --stream",
"start:remote:prod": "lerna run start:remote:prod --stream",
"start-mobile:local:dev": "lerna run start-mobile:local:dev --stream",
"start-mobile:local:prod": "lerna run start-mobile:local:prod --stream",
"start-mobile:remote:dev": "lerna run start-mobile:remote:dev --stream",
"start-mobile:remote:prod": "lerna run start-mobile:remote:prod --stream",
"bundle:mobile": "lerna run bundle-mobile --stream",
"publish-mobile:internal": "lerna run publish-mobile:internal --stream",
"test": "lerna run test --concurrency 1 --stream",
"dev-build:api": "lerna run build --scope \"@grumpycorp/warm-and-fuzzy-api\" --stream",
"dev-build:firmware": "lerna run build --scope \"@grumpycorp/warm-and-fuzzy-firmware\" --stream"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/runtime": "^7.10.1",
"@graphql-codegen/add": "^1.15.0",
"@graphql-codegen/cli": "^1.15.0",
"@graphql-codegen/typescript": "^1.15.0",
"@graphql-codegen/typescript-operations": "^1.15.0",
"@graphql-codegen/typescript-react-apollo": "^1.15.0",
"@graphql-codegen/typescript-resolvers": "^1.15.0",
"@types/auth0-js": "^9.13.1",
"@types/aws-lambda": "^8.10.51",
"@types/history": "^4.7.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/jwt-decode": "^2.2.1",
"@types/moment-timezone": "^0.5.13",
"@types/node": "^13.13.9",
"@types/qs": "^6.9.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-native": "^0.61.23",
"@types/react-router-dom": "^5.1.5",
"@types/yup": "^0.26.37",
"cross-env": "^7.0.2",
"cross-var": "^1.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react-native": "^3.8.1",
"get-dev-paths": "^0.1.1",
"graphql": "^15.0.0",
"lerna": "^3.22.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react-scripts": "3.4.0",
"run-script-os": "^1.1.1",
"serverless": "^1.71.3",
"serverless-certificate-creator": "^1.3.0",
"serverless-cloudfront-invalidate": "^1.4.0",
"serverless-domain-manager": "^4.1.1",
"serverless-offline": "^6.3.0",
"serverless-pseudo-parameters": "^2.5.0",
"serverless-s3-sync": "^1.14.3",
"serverless-webpack": "^5.3.2",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "4.41.5",
"yup": "^0.29.1"
}
}