forked from mdn/developer-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 KB
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
{
"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 --passWithNoTests",
"watch": "NODE_ENV=development webpack -w"
},
"browserslist": [
"last 1 version",
"> 0.2%",
"not dead"
],
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"env": {
"browser": true,
"jest": true
},
"globals": {
"Mzp": "readonly"
}
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@mozilla-protocol/core": "^7.0.0",
"@mozilla-protocol/tokens": "^3.0.0",
"autoprefixer": "9.5.1",
"buble": "^0.19.7",
"buble-loader": "^0.5.1",
"concurrently": "4.1.0",
"css-loader": "^2.1.1",
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}