-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.89 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "webpack-react-skeleton",
"version": "0.3.0",
"description": "Keathley's skeleton for building apps with react and webpack",
"main": "bundle.js",
"scripts": {
"env": "env",
"start": "webpack-dev-server --hot",
"test": "mocha --require app/__tests__/test_helper.js --compilers jsx?:babel-core/register 'app/**/*_test.@(js|jsx)'",
"test:watch": "npm run test -- --watch",
"build:stage": "echo \"Publich path: $PUBLIC_PATH\" && NODE_ENV=production webpack -p --config webpack.config.js",
"build:prod": "PUBLIC_PATH=elect.in.th/politics-and-business NODE_ENV=production webpack -p --config webpack.config.js",
"clean": "test -d dist && rm -r dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/keathley/webpack-react-skeleton.git"
},
"keywords": [
"webpack",
"babel",
"postcss",
"react",
"eslint",
"skeleton"
],
"author": "Chris Keathley",
"license": "MIT",
"bugs": {
"url": "https://github.com/keathley/webpack-react-skeleton/issues"
},
"homepage": "https://github.com/keathley/webpack-react-skeleton",
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"d3": "^5.9.1",
"d3-format": "^1.3.2",
"d3-scale": "^2.2.2",
"d3-scale-chromatic": "^1.3.3",
"d3-symbol-extra": "^0.1.0",
"fs": "0.0.1-security",
"glob": "^7.1.3",
"history": "^3.0.0",
"immutable": "^3.7.5",
"lodash": "^4.17.11",
"normalize.css": "^4.2.0",
"random-int": "^1.0.0",
"react": "^15.6.2",
"react-autocomplete": "^1.8.1",
"react-copy-to-clipboard": "^5.0.1",
"react-d3-library": "^1.1.8",
"react-dom": "^15.2.1",
"react-ga": "^2.5.7",
"react-image": "^2.0.0",
"react-router": "^2.6.0",
"react-router-dom": "^4.3.1",
"react-select": "^2.4.2",
"react-select-search": "^0.9.6",
"react-share": "^2.4.0",
"universal-cookie": "^3.0.7"
},
"devDependencies": {
"autoprefixer": "^6.1.2",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chai": "^3.4.1",
"chai-immutable": "^1.5.3",
"copy-webpack-plugin": "^4.4.2",
"css-loader": "^0.23.0",
"css-modules-require-hook": "^4.0.1",
"css-mqpacker": "^5.0.1",
"csswring": "^5.1.0",
"enzyme": "^2.4.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"mocha": "^2.3.4",
"postcss": "^5.2.18",
"postcss-color-function": "^2.0.0",
"postcss-loader": "^0.9.1",
"postcss-modules-values": "^1.1.1",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^0.14.3",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.0",
"webpack-dev-server": "^1.9.0"
}
}