-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.96 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "visualization",
"version": "1.0.0",
"description": "Project in the module Visualization of the Media Informatics Masters at the TH Köln",
"main": "index.js",
"scripts": {
"data:flights": "node data/flights/convertdata.js",
"data:flights:format": "node data/flights/formatdata.js",
"data:covid19:format": "node data/covid19/formatdata.js",
"lint:js": "eslint './src/**/*.js'",
"lint:js:fix": "eslint './src/**/*.js' --fix",
"lint:css": "stylelint './src/**/*.css'",
"lint:css:fix": "stylelint './src/**/*.css' --fix",
"lint": "npm-run-all -p lint:js lint:css",
"test": "npm-run-all -p lint",
"copy:views": "recursive-copy 'src/views' 'dist'",
"copy:fonts": "recursive-copy 'src/assets/fonts' 'dist/assets/fonts'",
"copy:data": "recursive-copy 'data/flights/output' 'dist/data' && recursive-copy 'data/covid19/output' 'dist/data'",
"copy": "npm-run-all -p copy:*",
"clean": "recursive-delete 'dist'",
"build:js": "rollup -c",
"build:css": "postcss 'src/assets/css/main.css' -o 'dist/assets/css/main.css' -m",
"build-dirty": "npm-run-all -s build:* copy",
"build": "npm-run-all -s clean build-dirty",
"watch:js": "chokidar './src/**/*.js' -c 'npm run build:js'",
"watch:css": "chokidar './src/**/*.css' -c 'npm run build:css'",
"watch:views": "chokidar './src/views/**/*.*' -c 'npm run copy:views'",
"watch:fonts": "chokidar './src/assets/fonts/**/*.*' -c 'npm run copy:fonts'",
"watch:data": "chokidar './data/**/*.*' -c 'npm run copy:data'",
"watch": "npm-run-all -p build watch:*",
"server-start": "browser-sync start --files 'dist' --server 'dist' --no-ghost-mode --no-inject-changes --no-ui",
"server": "npm-run-all -p watch server-start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finnge/mi-visualization.git"
},
"author": "Bao, Gedrath, Pelzer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/finnge/mi-visualization/issues"
},
"homepage": "https://github.com/finnge/mi-visualization#readme",
"engines": {
"node": "18.x",
"npm": "8.x"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"async-csv": "^2.1.3",
"cli-progress": "^3.11.1",
"csv": "^6.1.0",
"d3": "^7.4.4",
"glob-promise": "^4.2.2",
"multistream": "^4.1.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"autoprefixer": "^10.4.7",
"browser-sync": "^2.27.10",
"chokidar-cli": "^3.0.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"postcss-minify": "^1.1.0",
"recursive-copy": "^2.0.14",
"recursive-fs": "^2.1.0",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^14.9.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-standard": "^26.0.0"
}
}