forked from tamlenguyen/Mokku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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
{
"name": "Mokku",
"version": "1.7.0",
"description": "Adds the API mocker MOKKU to Chrome Developer Tools for seamless integration & testing.",
"main": "index.js",
"scripts": {
"watch": "rm -rf ./dist && webpack --config webpack/webpack.dev.js --watch",
"build": "rm -rf ./dist && webpack --config webpack/webpack.prod.js && rm mokku.zip && zip mokku.zip dist/*",
"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": {
"@types/react-router-dom": "^5.1.6",
"brace": "^0.11.1",
"firebase": "^8.1.1",
"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": "^16.13.1",
"react-ace": "^7.0.5",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"rebass": "^4.0.7",
"styled-components": "^5.1.1",
"xhook": "^1.4.9"
},
"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": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"docsify-cli": "^4.4.1",
"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": "^6.2.1",
"typescript": "~3.8.3 ",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "~3.3.11",
"webpack-merge": "~4.2.2"
}
}