-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "kohonen-stars",
"homepage": "https://seracio.github.io/kohonen-stars",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"gh-pages": "^0.12.0",
"react-scripts": "0.7.0"
},
"dependencies": {
"d3-array": "^1.0.2",
"d3-force": "^1.0.4",
"d3-scale": "^1.0.4",
"d3-scale-chromatic": "^1.1.0",
"d3-selection": "^1.0.3",
"d3-selection-multi": "^1.0.0",
"d3-shape": "^1.0.4",
"filendir": "^1.0.0",
"kohonen": "0.7.0",
"lodash": "^4.17.2",
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"scripts": {
"start": "react-scripts start",
"parse": "./node_modules/.bin/babel-node scripts/parseDat.js",
"som": "./node_modules/.bin/babel-node scripts/som.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
}
}