-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "wiwili",
"version": "0.2.0",
"description": "Data visualization for the cyclists at the Wiwili bridge in Freiburg.",
"author": "Nico Gräf <[email protected]>",
"scripts": {
"dev": "concurrently \"npm run build:watch\" \"npm run serve\"",
"build": "rollup -c",
"build:watch": "rollup -wc",
"build:update": "npm run update && rollup -c",
"serve": "serve public",
"deploy": "npm run build && gh-pages -d public",
"update": "node utils/update-data.js"
},
"keywords": [
"data",
"visualization",
"freiburg",
"cycling"
],
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"d3": "^6.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-typescript": "^8.1.0",
"@types/d3": "^6.2.0",
"concurrently": "^5.3.0",
"gh-pages": "^3.1.0",
"rollup": "^2.35.1",
"serve": "^11.3.2",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}