forked from software-tools-books/js4ds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.75 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
{
"name": "js4ds",
"version": "0.3.0",
"description": "JavaScript for Data Science",
"keywords": [
"lesson",
"JavaScript",
"data science"
],
"main": "index.js",
"author": "Maya Gans, Toby Hodges, and Greg Wilson",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "http://software-tools-in-javascript.github.io/js4ds/",
"scripts": {
"dev": "parcel serve -p 4000",
"lint": "eslint bin/*.js src/**/*.js",
"standard": "standard",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/software-tools-in-javascript/js4ds.git"
},
"bugs": {
"url": "https://github.com/software-tools-in-javascript/js4ds/issues"
},
"standard": {
"ignore": [
"css/**"
]
},
"dependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"eslint": "^5.10.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"express-winston": "^3.0.1",
"fs-extra": "^7.0.0",
"glob": "^7.1.2",
"glob-promise": "^3.4.0",
"http-server": "^0.11.1",
"js-yaml": "^3.12.0",
"jsdom": "^13.0.0",
"mocha": "^5.2.0",
"node-fetch": "^2.2.0",
"papaparse": "^4.6.1",
"parcel-bundler": "^1.10.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-vega": "^4.0.2",
"react-vega-lite": "^2.0.2",
"sqlite3": "^4.0.2",
"supertest": "^3.1.0",
"vega": "^4.2.0",
"vega-embed": "^3.18.2",
"vega-lib": "^4.2.0",
"vega-lite": "^2.6.0",
"winston": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.26.3"
}
}