This repository has been archived by the owner on Dec 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
72 lines (72 loc) · 1.68 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
{
"name": "mozilla-developer-portal",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack",
"lint": "eslint --ext .js .",
"prettier": "prettier --write \"**/*.js\"",
"test": "npm run lint && jest",
"watch": "NODE_ENV=development webpack -w"
},
"browserslist": [
"last 1 version",
"> 0.2%",
"not dead"
],
"eslintConfig": {
"extends": [
"plugin:jsdoc/recommended",
"airbnb-base",
"prettier"
],
"env": {
"browser": true,
"jest": true
},
"globals": {
"Mzp": "readonly"
},
"plugins": [
"jsdoc"
],
"rules": {
"jsdoc/require-param-description": 0,
"jsdoc/require-returns-description": 0
}
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"js-cookie": "2.2.1",
"promise-polyfill": "8.1.3",
"whatwg-fetch": "3.2.0"
},
"devDependencies": {
"@mozilla-protocol/core": "11.0.2",
"@mozilla-protocol/tokens": "5.0.3",
"autoprefixer": "9.8.4",
"buble": "0.20.0",
"buble-loader": "0.5.1",
"css-loader": "3.6.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsdoc": "30.2.2",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.4.0",
"jest-fetch-mock": "3.0.3",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-loader": "3.0.0",
"prettier": "2.0.5",
"sass-loader": "8.0.2",
"webpack": "4.44.1",
"webpack-cli": "3.3.12"
}
}