-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "datamundo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"vercel-build": "npm run build",
"build": "webpack",
"lint": "standard",
"lint-fix": "standard --fix",
"dev": "webpack-dev-server --history-api-fallback",
"server:api": "json-server db.json",
"serve:dev": "webpack --mode 'development' && npx serve dist -s",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"html-webpack-plugin": "^4.3.0",
"json-server": "^0.16.1",
"standard": "^14.3.4",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@emotion/core": "^10.0.28",
"@reach/router": "^1.3.4",
"babel-plugin-styled-components": "^1.11.1",
"chart.js": "^2.9.3",
"emotion-theming": "^10.0.27",
"file-loader": "^6.0.0",
"react": "^16.13.1",
"react-chartjs-2": "^2.10.0",
"react-countup": "^4.3.3",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1",
"url-loader": "^4.1.0"
},
"standard": {
"ignore": [
"api/**"
]
},
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielVM19/datamundo.git"
},
"author": "Daniel Valderrama Mendoza <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanielVM19/datamundo/issues"
},
"homepage": "https://github.com/DanielVM19/datamundo#readme"
}