-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
76 lines (76 loc) · 2.86 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
{
"name": "douban-imdb",
"version": "0.8.2",
"description": "doubanIMDb",
"private": true,
"main": "src/scripts/background.js",
"repository": "https://github.com/lisongx/doubanIMDb",
"author": "Li Song <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10 <=12",
"yarn": ">= 1.0.0"
},
"scripts": {
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch",
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch",
"dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera webpack --watch",
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack",
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack",
"build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera webpack",
"build": "yarn run build:chrome && yarn run build:firefox && yarn run build:opera",
"deploy-server": "git push heroku `git subtree split --prefix server master`:master",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write 'src/**/*.js' 'server/*.js'"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"lodash": "^4.17.15",
"mustache": "^4.0.1",
"webextension-polyfill": "^0.6.0",
"wikibase-sdk": "^7.4.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"autoprefixer": "^9.7.4",
"babel-eslint": "10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^6.0.3",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-onepass": "^1.6.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"extract-loader": "^3.1.0",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^2.3.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.4",
"webpack-fix-style-only-entries": "^0.4.0",
"wext-manifest-loader": "^1.1.6",
"wext-manifest-webpack-plugin": "^1.1.1",
"zip-webpack-plugin": "^3.0.0"
}
}