forked from mozilla/fxa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.36 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "fxa",
"private": true,
"version": "2.0.0",
"description": "Firefox Accounts monorepo",
"scripts": {
"preinstall": "_scripts/check-package-manager.sh",
"authors": "git shortlog -s | cut -c8- | sort -f > AUTHORS",
"start": "nps --prefix=start",
"stop": "nps --prefix=stop",
"restart": "nps --prefix=restart",
"delete": "nps --prefix=delete",
"rebuild-packages": "yarn workspaces foreach run build",
"adb-reverse": "./_scripts/adb-reverse.sh",
"test": "_scripts/test-package.sh",
"config-fxios": "node _scripts/config-fxios.js",
"format": "yarn workspaces foreach run format",
"ports": "pm2 jlist | json -a -c 'this.pm2_env.env.PORT' pm2_env.env.PORT name",
"heroku-postbuild": "yarn workspaces foreach --verbose --include 123done install",
"mysql": "docker exec -it $(docker container ls | grep mysql | cut -d' ' -f1) mysql",
"firefox": "./packages/fxa-dev-launcher/bin/fxa-dev-launcher.mjs"
},
"homepage": "https://github.com/mozilla/fxa",
"bugs": {
"url": "https://github.com/mozilla/fxa/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/fxa"
},
"author": "Mozilla (https://mozilla.org/)",
"license": "MPL-2.0",
"dependencies": {
"diffparser": "^2.0.1",
"husky": "^4.2.5",
"lint-staged": "^13.0.3",
"node-fetch": "^2.6.7",
"nps": "^5.10.0",
"pm2": "^5.2.2",
"prettier": "^2.3.1",
"replace-in-file": "^6.3.5",
"semver": "^7.3.5"
},
"engines": {
"node": "^16.12.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "_scripts/git-checkout-hook.sh",
"post-merge": "_scripts/git-merge-hook.sh"
}
},
"lint-staged": {
"*.js": [
"prettier --config _dev/.prettierrc --write",
"eslint"
],
"*.{ts,tsx}": [
"prettier --config _dev/.prettierrc --write"
],
"packages/fxa-auth-server/**/*.{ts,tsx}": [
"eslint"
],
"*.css": [
"prettier --config _dev/.prettierrc --write"
],
"*.scss": [
"stylelint --config _dev/.stylelintrc"
],
"*.md": [
"prettier --config _dev/.prettierrc --write"
]
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-fxa": "^2.0.2",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-react": "^7.31.10",
"json": "^11.0.0",
"postcss": "^8.4.14",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^8.0.0"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"@grpc/grpc-js": "~1.6.0",
"@nestjs/cli/typescript": "^4.5.2",
"@types/node": "^16.11.3",
"browserid-crypto": "https://github.com/mozilla-fxa/browserid-crypto.git#5979544d13eeb15a02d0b9a6a7a08a698d54d37d",
"elliptic": ">=6.5.4",
"eslint-plugin-import": "^2.25.2",
"fbjs/isomorphic-fetch": "^3.0.0",
"gobbledygook": "https://github.com/mozilla-fxa/gobbledygook.git#354042684056e57ca77f036989e907707a36cff2",
"google-gax": "2.30.5",
"http-proxy": "^1.18.1",
"minimist": "^1.2.6",
"moment:>2.0.0 <3": ">=2.29.4",
"node-forge": ">=1.3.0",
"plist": "^3.0.6",
"protobufjs:>6.0.0 <7": ">=6.11.3",
"tap/typescript": "^4.5.2",
"terser:>4.0.0 <5": ">=4.8.1",
"terser:>5 <6": ">=5.14.2",
"underscore": ">=1.13.2",
"url-parse": "^1.5.8"
},
"packageManager": "[email protected]"
}