This repository has been archived by the owner on Jul 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
{
"name": "mouseflow-support-chrome-extension",
"version": "2.0.38",
"description": "Mouseflow Support for Chrome",
"main": "background.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch src --exec \"npm run build\" --verbose -e ts,tsx,css,html,json",
"prebuild": "rimraf build",
"build": "webpack",
"postbuild": "copyfiles -u 1 ./src/**/*.{svg,jpg,png,html,css,js,json} ./build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bensoutendijk/mouseflow-chrome-devtools-extension.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bensoutendijk/mouseflow-chrome-devtools-extension/issues"
},
"homepage": "https://github.com/bensoutendijk/mouseflow-chrome-devtools-extension#readme",
"dependencies": {
"@types/chrome": "0.0.114",
"@types/js-cookie": "^2.2.6",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"clsx": "^1.1.0",
"copyfiles": "^2.3.0",
"css-loader": "^3.5.3",
"eslint": "^7.1.0",
"js-cookie": "^2.2.1",
"nodemon": "^2.0.4",
"path": "^0.12.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"source-map-loader": "^1.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}