-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.61 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
{
"name": "whomadethatcoffee",
"version": "0.1.0",
"engines": {
"node": "10.16.3",
"yarn": "1.17.3"
},
"description": "Who Made That Coffee?",
"scripts": {
"start": "node config/server.js",
"dev": "node config/webpack-dev-server.js",
"build": "yarn clean; webpack --config config/webpack-prod-config.js",
"clean": "rm -rf build/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jandeilson/WhoMadeThatCoffee.git"
},
"keywords": [
"react",
"coffee",
"google sheets",
"made"
],
"author": "Jandeilson De Sousa",
"license": "MIT",
"bugs": {
"url": "https://github.com/jandeilson/WhoMadeThatCoffee/issues"
},
"homepage": "https://github.com/jandeilson/WhoMadeThatCoffee#README",
"dependencies": {
"bulma": "^0.7.5",
"i18next": "^17.0.13",
"i18next-browser-languagedetector": "^3.0.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-i18next": "^10.12.2",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"devDependencies": {
"express": "^4.17.1",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"react-slick": "^0.25.2",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.0.1",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1"
}
}