-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.95 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
{
"name": "gb-devtools",
"version": "0.4.1",
"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}\"",
"package": "yarn clean && yarn build && cd dist && zip -r build.zip . && mv build.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.2.0",
"@medv/finder": "^3.2.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-tooltip": "^1.1.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",
"react-hook-form": "^7.52.2",
"react-icons": "^5.3.0",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.3",
"style-to-object": "^1.0.6"
},
"devDependencies": {
"@types/chrome": "^0.0.270",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.20",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"glob": "^11.0.0",
"jest": "^29.7.0",
"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.93.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
}
}