forked from snowplow/chrome-snowplow-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.1 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
{
"name": "sophi-data-inspector",
"version": "0.2.22",
"description": "Adds a panel to DevTools to show and validate Sophi tracking implementation.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "tsc --noEmit",
"fmt": "prettier -w src",
"clean": "rm -r dist || true",
"start": "npm run clean && mkdir -p dist && ln -s ../manifest.json ../res/s-logo.png ../res/sophi.png ../res/sophi-16.png ../res/sophi-48.png ../res/sophi-128.png ../src/popup.html ../LICENSE.txt dist/ && parcel watch src/panel.html src/options.html src/devtools.html",
"build": "npm run clean && mkdir -p dist && cp manifest.json res/s-logo.png res/sophi.png res/sophi-16.png res/sophi-48.png res/sophi-128.png src/popup.html LICENSE.txt dist/ && parcel build --no-source-maps src/panel.html src/options.html src/devtools.html",
"xpi": "npm run build && npx web-ext build --overwrite-dest -s dist/ -a .",
"zip": "npm run build && zip -r sophi-data-inspector.zip dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/globeandmail/chrome-snowplow-inspector.git"
},
"author": "Poplin Data",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/globeandmail/chrome-snowplow-inspector/issues"
},
"homepage": "https://sophi.io/",
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.8.4",
"@snowplow/browser-tracker": "^3.1.1",
"bulma": "^0.7.5",
"canonicalize": "^1.0.5",
"jsonschema": "1.*",
"preact": "*"
},
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat",
"react/jsx-runtime": "preact/jsx-runtime"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.0.0",
"@types/chrome": "*",
"@types/elasticsearch": "^5.0.36",
"@types/har-format": "1.*",
"@types/node": "*",
"buffer": "^6.0.3",
"parcel": "^2.0.0",
"prettier": "^2.3.2",
"querystring-es3": "^0.2.1",
"sass": "^1.23.7",
"tslib": "*",
"typescript": "^4.2.4",
"url": "^0.11.0"
}
}