forked from mukuljainx/Mokku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 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
75
{
"name": "Mokku",
"version": "2.0.6",
"description": "Adds the API mocker MOKKU to Chrome Developer Tools for seamless integration & testing.",
"main": "index.js",
"scripts": {
"start": "rm -rf ./dist && webpack --config webpack/webpack.dev.js --watch",
"build": "rm -rf ./dist && webpack --config webpack/webpack.prod.js",
"watch:example": "npx http-server example",
"clean": "rimraf dist",
"test": "npx jest",
"docsify": "docsify"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.8",
"@mantine/form": "^6.0.11",
"@mantine/hooks": "^6.0.8",
"@mantine/notifications": "^6.0.15",
"@sentry/browser": "^7.66.0",
"@sentry/react": "^7.66.0",
"@sentry/tracing": "^7.66.0",
"brace": "^0.11.1",
"bundle-analyzer": "^0.0.6",
"formik": "^2.2.5",
"jquery": "^3.5.0",
"lodash": "^4.17.19",
"moment": "~2.24.0",
"path-to-regexp": "^6.2.0",
"prettier": "^2.2.1",
"query-string": "^6.13.1",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"styled-components": "^5.1.1",
"uuid": "^9.0.0",
"webpack-plugin": "^1.0.5",
"xhook": "^1.6.2",
"zustand": "^4.3.7"
},
"devDependencies": {
"@types/chrome": "0.0.100",
"@types/jest": "^25.1.4",
"@types/jquery": "^3.3.33",
"@types/lodash": "^4.14.155",
"@types/query-string": "^6.3.0",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"docsify-cli": "^4.4.1",
"file-loader": "^6.2.0",
"http-server": "^0.12.3",
"jest": "^25.1.0",
"rimraf": "^3.0.2 ",
"sass": "^1.26.7",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"ts-jest": "^25.2.1 ",
"ts-loader": "^9.4.2",
"typescript": "5.0.4",
"webpack": "^5.83.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^5.1.1",
"webpack-merge": "^5.8.0"
}
}