forked from thiagosalome/github-repositorios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 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
{
"name": "meus_repositorios",
"version": "1.0.0",
"description": "Aplicação criada utilizando a API do Git na intenção de trabalhar conceitos de ES6 e Webpack.",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode=development",
"build": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagosalome/meus_repositorios.git"
},
"keywords": [
"git",
"api",
"webpack",
"es6"
],
"engines": {
"node": ">=8.9.1",
"npm": ">=6.4.1"
},
"author": "Thiago Gonçalves Salomé",
"license": "ISC",
"bugs": {
"url": "https://github.com/thiagosalome/meus_repositorios/issues"
},
"homepage": "https://github.com/thiagosalome/meus_repositorios#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@types/webpack": "^4.4.19",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"html-critical-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"axios": "^0.18.0"
}
}