-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.27 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.27 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "gb-devtools",
"version": "1.2.4",
"private": true,
"scripts": {
"dev": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
"build:chrome": "yarn clean && yarn build && cp public/manifest.chrome.json dist/manifest.json && cd dist && rm -f manifest.*.json",
"build:firefox": "yarn clean && yarn build && cp public/manifest.firefox.json dist/manifest.json && cd dist && rm -f manifest.*.json",
"package:chrome": "yarn clean && yarn build && cp public/manifest.chrome.json dist/manifest.json && cd dist && rm -f manifest.*.json && zip -r build.chrome.zip . && mv build.chrome.zip ../",
"package:firefox": "yarn clean && yarn build && cp public/manifest.firefox.json dist/manifest.json && cd dist && rm -f manifest.*.json && zip -r build.firefox.zip . && mv build.firefox.zip ../"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/growthbook/devtools"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@growthbook/growthbook": "^1.6.5",
"@medv/finder": "^3.2.0",
"@phosphor-icons/react": "^2.1.7",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-form": "^0.1.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@radix-ui/themes": "^3.1.3",
"@react-hook/resize-observer": "^2.0.2",
"clsx": "^2.1.1",
"dom-mutator": "^0.7.0",
"framer-motion": "^11.3.24",
"json-stringify-pretty-compact": "^4.0.0",
"lodash": "^4.17.21",
"parse-domain": "^8.2.2",
"query-string": "^9.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-gfm": "^4.0.1",
"react-hook-form": "^7.52.2",
"react-icons": "^5.3.0",
"react-markdown": "^10.1.0",
"react-select": "^5.10.0",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.3",
"style-to-object": "^1.0.6",
"swr": "^2.3.0",
"uniqid": "^5.4.0"
},
"devDependencies": {
"@types/chrome": "^0.0.270",
"@types/eslint": "^8.4.5",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uniqid": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"autoprefixer": "^10.4.20",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.20.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-async-foreach": "^0.1.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.30.1",
"glob": "^11.0.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"node-fetch": "^3.3.2",
"postcss": "^8.4.41",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}