-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 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
{
"name": "visualization_dashboard",
"version": "1.0.0",
"description": "d3 movie data visualizations",
"main": "app.js",
"scripts": {
"test": "jest",
"lint": "eslint app",
"build": "parcel build index.html --public-url ./ --detailed-report --no-source-maps",
"start": "parcel index.html --https",
"run-prod": "http-server dist"
},
"dependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"colorbrewer": "^1.5.0",
"parcel": "^2.0.0-beta.2",
"webpack": "^5.28.0"
},
"devDependencies": {
"babel-plugin-dynamic-import-node": "^2.3.3",
"cssnano": "^4.1.10",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"parcel-plugin-clean-dist": "0.0.6",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"regenerator-runtime": "^0.13.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lkaratun/visualization_dashboard.git"
},
"keywords": [
"d3",
"javascript"
],
"author": "Lev Karatun",
"license": "ISC",
"bugs": {
"url": "https://github.com/lkaratun/visualization_dashboard/issues"
},
"homepage": "https://github.com/lkaratun/visualization_dashboard#readme",
"eslintConfig": {
"globals": {
"window": true,
"d3": true
}
},
"jest": {
"browser": true
}
}