forked from ufb/Textmarker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 991 Bytes
/
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
{
"name": "textmarker",
"author": "underflyingbirches",
"description": "webextensions-addon-textmarker",
"main": "src/main.js",
"dependencies": {
"cross-env": "^5.2.1",
"web-ext": "^5.0.0",
"webpack": "^4.43.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"acorn": "^7.2.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^2.1.1",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"node-sass": "^4.14.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"__webpack": "webpack --progress --config=webpack.config.js --hide-modules --display=minimal",
"dev": "cross-env NODE_ENV=DEV npm run __webpack",
"prod": "cross-env NODE_ENV=PROD npm run __webpack"
}
}