-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "word-counter",
"version": "1.0.0",
"description": "Word and character counter",
"author": "Iulian Preda",
"license": "MIT",
"private": true,
"sideEffects": [
"*.scss"
],
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"extract": "node ./translate.js",
"build-lite": "webpack --config webpack.config.lite.js",
"watch-lite": "webpack --config webpack.config.lite.js --watch",
"extract-lite": "node ./translate.js ./src-lite"
},
"devDependencies": {
"@types/chrome": "0.0.88",
"@types/firefox-webext-browser": "^70.0.1",
"@types/source-map": "^0.5.2",
"@google-cloud/translate": "^5.3.0",
"bootstrap": "^4.4.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"glob": "^7.1.6",
"html-webpack-plugin": "^4.0.4",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"purgecss-webpack-plugin": "^2.1.0",
"sass-loader": "^8.0.2",
"source-map": "^0.7.3",
"ts-loader": "^6.1.2",
"tslint": "^5.20.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.9"
}
}