forked from reactjs/express-react-views
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 991 Bytes
/
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
{
"name": "express-react-views",
"version": "0.10.2",
"description": "This is an Express view engine which renders React components on server. It renders static markup and *does not* support mounting those views on the client.",
"keywords": [
"express",
"view engine",
"react"
],
"main": "index.js",
"scripts": {
"test": "node test"
},
"author": "Paul O’Shannessy <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/reactjs/express-react-views.git"
},
"license": "BSD-3-Clause",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.5.1",
"js-beautify": "^1.5.10",
"lodash.escaperegexp": "^4.1.1",
"object-assign": "^4.0.1"
},
"devDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0",
"async": "^1.4.2"
}
}