This repository has been archived by the owner on Jun 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 243
/
package.json
137 lines (137 loc) · 4.06 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
137
{
"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.7.0",
"cross-env": "5.0.5",
"dotenv": "4.0.0",
"express": "4.15.4",
"helmet": "3.8.1",
"hpp": "0.2.2",
"modernizr": "3.5.0",
"normalize.css": "7.0.0",
"offline-plugin": "4.8.3",
"pretty-error": "2.1.1",
"prop-types": "15.5.10",
"react": "15.6.1",
"react-async-bootstrapper": "1.1.1",
"react-async-component": "1.0.1",
"react-dom": "15.6.1",
"react-helmet": "5.2.0",
"react-router-dom": "4.2.2",
"serialize-javascript": "1.4.0",
"uuid": "3.1.0"
},
"devDependencies": {
"assets-webpack-plugin": "3.5.1",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "21.0.2",
"babel-loader": "7.1.2",
"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.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-template": "6.26.0",
"chokidar": "1.7.0",
"css-loader": "0.28.7",
"enzyme": "2.9.1",
"enzyme-to-json": "2.0.0",
"eslint": "4.7.2",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.3.0",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"glob": "7.1.2",
"happypack": "3.0.3",
"html-webpack-plugin": "2.30.1",
"husky": "0.14.3",
"jest": "21.1.0",
"lint-staged": "4.2.2",
"md5": "2.2.1",
"modernizr-loader": "1.0.1",
"node-notifier": "5.1.2",
"prettier": "1.7.0",
"prettier-eslint": "8.1.1",
"prettier-eslint-cli": "4.3.2",
"react-addons-test-utils": "15.6.0",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "15.6.1",
"regenerator-runtime": "0.11.0",
"rimraf": "2.6.2",
"semver": "5.4.1",
"source-map-support": "0.4.18",
"style-loader": "0.18.2",
"webpack": "3.6.0",
"webpack-bundle-analyzer": "2.9.0",
"webpack-dev-middleware": "1.12.0",
"webpack-hot-middleware": "2.19.1",
"webpack-md5-hash": "0.0.5",
"webpack-node-externals": "1.6.0"
}
}