-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.56 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
{
"name": "meet-speaking-time-tracker",
"version": "0.4.11",
"main": "index.js",
"license": "MIT",
"scripts": {
"fix-manifest-dist-version": "node sedManifestVersion.js",
"clean": "rimraf dist && cpy manifest.json dist && yarn fix-manifest-dist-version && cpy src/popup.html dist && cpy src/img dist/img && cpy src/background.html dist && cpy src/assets/* dist/assets",
"prebuild": "npm run clean",
"prewatch": "npm run clean",
"build:contentscript-background": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build": "yarn build:contentscript-background",
"watch:contentscript-background": "cross-env NODE_ENV=development webpack --config webpack.config.js -w",
"watch": "npm-run-all --parallel watch:*",
"postversion": "git push && git push --tags",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"devDependencies": {
"@types/chrome": "^0.0.129",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"ts-loader": "^8.0.14",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"css-loader": "^5.0.2",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"mini-css-extract-plugin": "^1.3.6",
"sass": "^1.43.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sass-loader": "^11.0.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"dependencies": {}
}