-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.64 KB
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
{
"name": "express-react-middleware",
"version": "1.1.19",
"description": "Render react components from the server as views",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/jest --config jest.config.json",
"compile:helpers": "node_modules/.bin/babel src/_helpers.js --out-file src/helpers.js",
"compile:middleware": "node_modules/.bin/babel src/_middleware.js --out-file src/middleware.js",
"compile": "npm run compile:helpers && npm run compile:middleware"
},
"repository": {
"type": "git",
"url": "https://github.com/normancarcamo/express-react-middleware.git"
},
"contributors": [],
"author": {
"name": "Norman Carcamo",
"email": "normancarcamo@gmail.com",
"url": "normancarcamo.com"
},
"maintainers": [
"Norman Carcamo <normancarcamo@gmail.com> (normancarcamo.com)"
],
"keywords": [
"express-react-middleware",
"react render middleware",
"express react middleware",
"node-express-react-middleware",
"node express react middleware"
],
"bugs": {
"url": "https://github.com/normancarcamo/express-react-middleware/issues"
},
"homepage": "https://github.com/normancarcamo/express-react-middleware",
"dependencies": {
"cheerio": "^1.0.0-rc.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^4.1.1",
"react-router-config": "^1.0.0-beta.3",
"react-router-dom": "^4.1.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"jest": "^20.0.4",
"node-mocks-http": "^1.6.3",
"sinon": "^2.3.6"
}
}