forked from mozilla/fxa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.47 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
{
"name": "fxa",
"version": "2.0.0",
"description": "Firefox Accounts monorepo",
"scripts": {
"authors": "git shortlog -s | cut -c8- | sort -f > AUTHORS",
"postinstall": "_scripts/install_all.sh",
"npm-ci-all": "lerna exec --parallel --ignore fxa-amplitude-send -- npm ci",
"audit": "lerna run audit --parallel",
"start": "pm2 start mysql_servers.json && echo \"Use 'npm stop' to stop all the servers\"",
"stop": "pm2 kill",
"firefox": "./packages/fxa-dev-launcher/bin/fxa-dev-launcher",
"start-firefox": "npm run firefox",
"start-android": "node _scripts/start-android.js",
"test": "lerna run test",
"config-fxios": "node _scripts/config-fxios.js",
"format": "lerna run format"
},
"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": {
"adr-log": "^2.1.1",
"chalk": "1.1.1",
"diffparser": "^2.0.1",
"hot-shots": "^6.4.1",
"husky": "^2.5.0",
"internal-ip": "1.2.0",
"lerna": "^3.16.4",
"lint-staged": "^8.2.1",
"madr": "^2.1.2",
"node-fetch": "^2.3.0",
"pm2": "^3.5.1",
"prettier": "^1.19.1",
"replace-in-file": "0.2.1"
},
"engines": {
"node": ">=10",
"npm": ">=6.4.1"
},
"fxa": {
"moduleDependencies": {
"fxa-content-server": [
"123done",
"fortress",
"fxa-auth-server",
"fxa-js-client",
"fxa-shared",
"fxa-profile-server",
"fxa-oauth-server",
"fxa-payments-server"
],
"fxa-auth-server": [
"fxa-auth-db-mysql",
"fxa-shared"
],
"fxa-js-client": [
"fxa-auth-server"
],
"fxa-profile-server": [
"fxa-auth-server",
"fxa-shared"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run audit"
}
},
"lint-staged": {
"*.js": [
"eslint -c .eslintrc",
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"git add"
],
"*.css": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"concurrently": "5.0.0",
"eslint": "6.6.0",
"eslint-plugin-fxa": "2.0.1",
"eslint-plugin-jest": "^23.0.3"
}
}