forked from mozilla-extensions/normandy-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.46 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
{
"name": "normandy-devtools",
"version": "0.8.0",
"description": "A set of tools for interacting with the Firefox Normandy client",
"homepage_url": "https://github.com/mozilla/normandy-devtools",
"private": true,
"license": "MPLv2",
"scripts": {
"build": "npm-run-all clean build:webpack build:extension",
"build:extension": "web-ext build -s dist --overwrite-dest",
"build:webpack": "webpack --mode production --progress",
"build:webpack-dev": "webpack --mode development --progress",
"clean": "rimraf dist web-ext-artifacts",
"lint": "npm-run-all lint:eslint",
"lint-fix": "npm-run-all lint:eslint-fix",
"lint:eslint": "eslint webpack.config.js extension",
"lint:eslint-fix": "yarn run lint:eslint --fix",
"watch": "npm-run-all build:webpack-dev --parallel --race watch:*",
"watch:extension": "web-ext run -s dist",
"watch:webpack": "webpack --progress --mode development --watch"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-mozilla": "^1.2.1",
"eslint-plugin-no-unsanitized": "^3.0.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.8.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^4.0.0",
"generate-json-webpack-plugin": "^0.3.1",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.12.1",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-order": "^3.0.0",
"web-ext": "^3.0.0",
"webpack": "^4.8.3",
"webpack-cli": "^3.3.3"
},
"dependencies": {
"autobind-decorator": "^2.4.0",
"codemirror": "^5.47.0",
"js-yaml": "^3.11.0",
"luxon": "^1.2.1",
"rc-tree": "^2.1.0",
"react": "^16.3.2",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.3.2",
"react-error-boundary": "^1.2.3",
"react-highlight": "^0.12.0",
"react-router-dom": "^5.0.1",
"react-split": "^2.0.4",
"rsuite": "^3.8.5"
}
}