-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.52 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
{
"name": "react-webpack-boilerplate",
"version": "2.0.0",
"description": "Simple production ready boilerplate for React, Webpack (SASS and React hot reloading), tests and coverage.",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "jest",
"coverage": "jest --coverage",
"dist": "cross-env NODE_ENV=production webpack -p --progress",
"postinstall": "npm run dist"
},
"repository": {
"type": "git",
"url": "https://github.com/srn/react-webpack-boilerplate.git"
},
"engines": {
"node": "5",
"npm": "3"
},
"keywords": [
"react",
"webpack",
"boilerplate",
"production",
"sass",
"hot",
"reload"
],
"author": "Søren Brokær <[email protected]> (http://srn.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/srn/react-webpack-boilerplate/issues"
},
"homepage": "https://github.com/srn/react-webpack-boilerplate",
"dependencies": {
"babel-polyfill": "6.3.14",
"babel-runtime": "6.3.19",
"compression": "1.6.1",
"cross-env": "1.0.7",
"ejs": "2.4.1",
"express": "4.13.4",
"express-ejs-layouts": "2.0.0",
"highcharts": "5.0.12",
"json-loader": "0.5.4",
"lodash.uniqueid": "4.0.1",
"react": "0.14.6",
"react-dom": "0.14.6",
"react-highcharts": "12.0.0",
"webpack": "1.12.12"
},
"devDependencies": {
"assets-webpack-plugin": "3.2.0",
"autoprefixer-loader": "3.2.0",
"babel-core": "6.4.5",
"babel-jest": "6.0.1",
"babel-loader": "6.2.1",
"babel-plugin-transform-runtime": "6.4.3",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"coveralls": "2.11.6",
"css-loader": "0.23.1",
"eslint": "^3.19.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.0.1",
"jest-cli": "0.8.2",
"node-sass": "3.4.2",
"react-addons-test-utils": "0.14.6",
"react-hot-loader": "1.3.0",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"webpack-dev-server": "1.14.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"testFileExtensions": [
"test.js",
"test.jsx"
],
"testDirectoryName": "client"
}
}