forked from ctrlplusb/react-universally
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
136 lines (136 loc) · 4.03 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "react-universally",
"version": "13.0.0",
"description": "A starter kit for universal react applications.",
"main": "build/server/index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"analyze:client": "babel-node internal/scripts/analyze --client",
"analyze:server": "babel-node internal/scripts/analyze --server",
"build": "babel-node internal/scripts/build --optimize",
"build:dev": "babel-node internal/scripts/build",
"clean": "cross-env babel-node internal/scripts/clean",
"deploy": "babel-node internal/scripts/deploy",
"develop": "cross-env DEPLOYMENT=development babel-node internal/development",
"lint": "eslint client server shared config internal",
"precommit": "lint-staged",
"preinstall": "node internal/scripts/preinstall",
"prepush": "jest",
"start": "cross-env NODE_ENV=production node build/server",
"test": "jest",
"test:coverage": "jest --coverage"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"shared/**/*.{js,jsx}"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|internal|node_modules|flow-typed|public)/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctrlplusb/react-universally.git"
},
"keywords": [
"react",
"boilerplate",
"starter kit",
"universal",
"javascript",
"express",
"webpack"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ctrlplusb/react-universally/issues"
},
"homepage": "https://github.com/ctrlplusb/react-universally#readme",
"dependencies": {
"app-root-dir": "1.0.2",
"colors": "1.1.2",
"compression": "1.6.2",
"cross-env": "4.0.0",
"dotenv": "4.0.0",
"express": "4.15.2",
"helmet": "3.5.0",
"hpp": "0.2.2",
"modernizr": "3.5.0",
"normalize.css": "6.0.0",
"offline-plugin": "4.7.0",
"prop-types": "15.5.8",
"react": "15.5.4",
"react-async-bootstrapper": "1.1.1",
"react-async-component": "1.0.0-beta.3",
"react-dom": "15.5.4",
"react-helmet": "5.0.3",
"react-router-dom": "4.1.1",
"serialize-javascript": "1.3.0",
"uuid": "3.0.1"
},
"devDependencies": {
"assets-webpack-plugin": "3.5.1",
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.2",
"babel-jest": "19.0.0",
"babel-loader": "6.4.1",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-react-jsx-self": "6.22.0",
"babel-plugin-transform-react-jsx-source": "6.22.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.4.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-template": "6.24.1",
"chokidar": "1.6.1",
"css-loader": "0.28.0",
"enzyme": "2.8.2",
"enzyme-to-json": "1.5.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"glob": "7.1.1",
"happypack": "3.0.3",
"html-webpack-plugin": "2.28.0",
"husky": "0.13.3",
"jest": "19.0.2",
"lint-staged": "3.4.0",
"md5": "2.2.1",
"modernizr-loader": "1.0.1",
"node-notifier": "5.1.2",
"prettier": "1.2.2",
"prettier-eslint": "5.1.0",
"prettier-eslint-cli": "3.4.1",
"react-addons-test-utils": "15.5.1",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "15.5.4",
"regenerator-runtime": "0.10.3",
"rimraf": "2.6.1",
"semver": "5.3.0",
"source-map-support": "0.4.14",
"style-loader": "0.16.1",
"webpack": "2.4.1",
"webpack-bundle-analyzer": "2.4.0",
"webpack-dev-middleware": "1.10.1",
"webpack-hot-middleware": "2.18.0",
"webpack-md5-hash": "0.0.5",
"webpack-node-externals": "1.5.4"
}
}