-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.84 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": "limelight",
"version": "0.1.0",
"description": "Generate messages for the Firefox Messaging System.",
"private": true,
"scripts": {
"build": "parcel build src/index.html",
"serve": "parcel serve src/index.html",
"eslint": "eslint \"src/**/*.{ts,tsx}\"",
"stylelint": "stylelint \"src/**/*.scss\"",
"htmlhint": "htmlhint \"src/**/*.html\"",
"tsc": "tsc",
"install-hooks": "git config core.hooksPath .hooks",
"test": "jest",
"fixlints:eslint": "npm run eslint -- --fix",
"fixlints:stylelint": "npm run stylelint -- --fix",
"fixlints": "npm run fixlints:eslint && npm run fixlints:stylelint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/limelight.git"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/limelight/issues"
},
"homepage": "https://github.com/mozilla/limelight#readme",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@parcel/transformer-sass": "^2.8.3",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@tsconfig/node18": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@typescript-eslint/typescript-estree": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^5.10.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"parcel": "^2.8.3",
"prettier": "^2.8.3",
"process": "^0.11.10",
"react-select-event": "^5.5.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/error-message": "^2.0.1",
"@mozilla/nimbus-shared": "^1.10.0",
"@sentry/react": "^7.28.0",
"@sentry/tracing": "^7.28.0",
"@types/react": "^18.0.23",
"@types/react-bootstrap": "^0.32.31",
"@types/react-dom": "^18.0.7",
"bootstrap": "^5.2.2",
"classnames": "^2.3.2",
"mozjexl": "^1.1.6",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.39.1",
"react-json-pretty": "^2.2.0",
"react-router-dom": "^6.10.0",
"react-select": "^5.6.0",
"remeda": "^1.6.0"
},
"@parcel/transformer-js": {
"inlineEnvironment": [
"SENTRY_DSN",
"SENTRY_RELEASE",
"NODE_ENV"
]
}
}