-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "periodic-table-data-visualization",
"version": "1.0.1",
"description": "A visual representation (data visualization) of the chimical elements periodic table",
"engines": {
"node": "5.7.0",
"npm": "3.6.0"
},
"homepage": "http://vogelino.github.io/periodic-table-data-visualization/",
"repository": {
"type": "git",
"url": "git://github.com/vogelino/periodic-table-data-visualization.git"
},
"author": "vogelino",
"main": "./src/js/index.js",
"scripts": {
"deploy": "npm run build && node ./scripts/deploy-to-gh-pages.js",
"clean": "rm -rf ./public",
"build": "npm run clean && webpack -p",
"watch": "webpack-dev-server -d",
"start": "npm run watch"
},
"dependencies": {
"classnames": "^2.2.3",
"d3": "^3.5.16",
"deferred-js": "^1.0.2",
"immutable": "^3.7.6",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-input-autosize": "^0.6.8",
"react-select": "^0.9.1"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.9.0",
"json-loader": "^0.5.4",
"nib": "^1.1.0",
"style-loader": "^0.13.0",
"stylus-loader": "^1.5.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"license": "WTFPL"
}