-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "word2vec-explorer",
"version": "0.0.1",
"description": "Explore highly dimensional data",
"scripts": {
"test": "mocha test/unit/**/*.js",
"build": "browserify -t browserify-css ui/app.js --extension=.jsx public/js_to_compile/main.jsx | uglifyjs -cm > public/js/core.js",
"start_word": "watchify --extension=.jsx -o public/js/core_word.js -v -d public/js_to_compile/main_word.jsx",
"start_paper": "watchify --extension=.jsx -o public/js/core_paper.js -v -d public/js_to_compile/main_paper.jsx"
},
"browser": {
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"plugins": [
"add-module-exports"
],
"presets": [
"react",
"es2015"
]
},
"dependencies": {
"async": "^1.5.2",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^8.0.0",
"bootstrap": "^3.3.6",
"browserify": "^16.2.3",
"d3": "^3.5.16",
"history": "^1.17.0",
"jquery": "^2.2.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^1.0.3",
"three": "^0.73.2",
"uglify": "^0.1.5",
"watchify": "^3.11.0"
}
}