-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "fetcher",
"version": "1.3.3",
"description": "http request code generator.",
"main": "index.js",
"scripts": {
"test": "jest --maxWorkers=4",
"start": "webpack-dev-server --config webpack.config.js --mode development",
"build": "webpack --config webpack.config.js --mode production"
},
"keywords": [
"http",
"curl",
"fetch"
],
"author": "Pranay Rauthu <[email protected]> (https://twitter.com/pranay_rauthu)",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.11",
"vue": "^2.5.16",
"vue-codemirror-lite": "^1.0.4",
"vue-material": "^1.0.0-beta-13",
"vue-router": "^3.0.1",
"vuex": "^3.1.1"
},
"devDependencies": {
"@types/puppeteer": "^1.5.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^0.28.11",
"jest": "^22.4.3",
"jest-fetch-mock": "^1.5.0",
"jest-serializer-vue": "^1.0.0",
"node-sass": "^4.9.1",
"puppeteer": "^1.5.0",
"regenerator-runtime": "^0.11.1",
"sass-loader": "^7.0.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"vue-html-loader": "^1.2.4",
"vue-jest": "^2.5.0",
"vue-loader": "^15.0.9",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.7.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^2.1.2",
"webpack-dev-server": "^3.1.4"
},
"jest": {
"setupFiles": [
"./setupJest.js"
]
}
}