This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
forked from Shopify/shopify-theme-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.16 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "thinkific-devtool",
"version": "1.0.0",
"description": "",
"main": "src/background.ts",
"scripts": {
"lint": "eslint '**/*.{ts,tsx}'",
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack --config webpack.prod.js",
"start": "webpack --config webpack.dev.js",
"zip": "yarn build && cd dist && zip -r -X ../thinkific_devtools.zip ."
},
"engines": {
"node": ">=14.16.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinkific/thinkific-theme-inspector.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thinkific/thinkific-theme-inspector/issues"
},
"homepage": "https://github.com/thinkific/thinkific-theme-inspector#readme",
"dependencies": {
"@types/d3": "^5.16.4",
"@types/jsdom": "^12.2.4",
"auth0-chrome": "^0.1.2",
"autobind-decorator": "^2.4.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^8.1.1",
"crypto-browserify": "^3.12.0",
"d3": "^5.16.0",
"d3-flame-graph": "^2.2.2",
"jsdom": "^15.2.1",
"lodash.debounce": "^4.0.8",
"lodash.escape": "^4.0.1",
"nullthrows": "^1.1.1",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@types/chrome": "^0.0.91",
"@types/jest": "^24.9.1",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.escape": "^4.0.6",
"@types/puppeteer": "^1.20.7",
"clean-webpack-plugin": "^3.0.0",
"closure-webpack-plugin": "^2.5.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-plugin-shopify": "^30.0.1",
"google-closure-compiler": "^20210406.0.0",
"html-webpack-inline-svg-plugin": "^2.3.0",
"html-webpack-plugin": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"jest-puppeteer": "^5.0.2",
"mini-css-extract-plugin": "^1.5.0",
"prettier": "^1.19.1",
"puppeteer": "^9.0.0",
"sinon-chrome": "^3.0.1",
"style-loader": "^1.3.0",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.2",
"typescript": "^3.9.9",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0",
"webpack-merge": "^4.2.2"
}
}