-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
54 lines (53 loc) · 1.14 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
{
"name": "word2vec-explorer",
"version": "0.0.1",
"description": "Explore highly dimensional data",
"scripts": {
"test": "mocha test/unit/**/*.js",
"build": "browserify --extension=.jsx ui/main.jsx | uglifyjs -cm > public/js/core.js",
"start": "watchify --extension=.jsx -o public/js/core.js -v -d ui/main.jsx"
},
"browser": {
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"plugins": [
"add-module-exports"
],
"presets": [
"react",
"es2015"
]
},
"dependencies": {
"jquery": "2.2.0",
"bootstrap": "3.3.6",
"d3": "3.5.16",
"async": "1.5.2",
"react-router": "1.0.3",
"history": "1.17.0",
"react": "0.14.7",
"react-dom": "0.14.7",
"three.js": "0.73.2",
"babel-preset-react": "6.3.13",
"babel-preset-es2015": "6.3.13",
"babel-plugin-add-module-exports": "0.1.2"
},
"devDependencies": {
"browserify": "*",
"babelify": "*",
"watchify": "*",
"uglifyjs": "*",
"standard": "*"
},
"standard": {
"ignore": [
"public/**"
]
}
}