-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "@dmitra/runstat",
"version": "0.0.1",
"description": "Visualization of running statistics for a year",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.org/Dmitra/runstat.git"
},
"keywords": [
"d3",
"radial chart",
"data visualisation"
],
"author": "Dmitra",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --config webpack.config.babel.js --port 8000",
"deploy": "rsync -azP --delete dist/ index.html data daviste.com:/home/dmitra/daviste.com/static/vis/runstat",
"build": "webpack --mode=production"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions"
],
"node": "current"
}
}
]
]
},
"dependencies": {
"d3": "^3.5.0",
"lodash": "3.7.0",
"plusjs": "https://github.com/Dmitra/plusjs.git"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@graphiy/eslint-config": "^0.1.0",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"style-loader": "^1.0.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
}
}