-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "halftone",
"version": "1.0.0",
"description": "Halftone print pattern simulator made with D3.js, React, Typescript and Webpack 2 bundling features",
"main": "dist/main.js",
"scripts": {
"start": "webpack-dev-server --config=webpack.dev.config.js",
"build:dev": "rimraf dist && webpack --config=webpack.dev.config.js",
"build:prod": "rimraf dist && webpack -p --config=webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjcalzado/Halftone-Simulator.git"
},
"keywords": [
"d3",
"js",
"ts",
"javascript",
"modules",
"react",
"halftone"
],
"author": "Javier Calzado",
"license": "MIT",
"bugs": {
"url": "https://github.com/fjcalzado/Halftone-Simulator/issues"
},
"homepage": "https://github.com/fjcalzado/Halftone-Simulator#readme",
"devDependencies": {
"@types/node": "^7.0.12",
"@types/react": "~15.0.20",
"@types/react-dom": "~0.14.18",
"awesome-typescript-loader": "^3.1.2",
"babel-core": "^6.24.1",
"babel-preset-env": "^1.3.3",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.2",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.1",
"postcss-loader": "^1.3.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"typescript": "^2.3.4",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^4.0.0"
},
"dependencies": {
"d3": "^4.7.4",
"postcss": "^6.0.1",
"postcss-cssnext": "^2.11.0",
"react": "~15.5.0",
"react-addons-css-transition-group": "~15.5.0",
"react-color": "^2.11.7",
"react-css-themr": "^2.1.2",
"react-dom": "~15.5.0",
"react-faux-dom": "4.0.0",
"react-sortable-hoc": "^0.6.3",
"react-toolbox": "^2.0.0-beta.8",
"react-worker-dom": "^2.0.0-alpha.6"
}
}