This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 261
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "express-react-views",
"version": "0.11.0",
"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": {
"lint": "eslint --ext=js,jsx .",
"format": "prettier --write *.js package.json .eslintrc.js 'examples/**/*.{js,jsx,json}' 'test/*.{js,jsx,json}'",
"test": "node test",
"test-on-travis": "yarn run test && yarn run lint"
},
"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 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"js-beautify": "^1.7.3",
"lodash.escaperegexp": "^4.1.2",
"object-assign": "^4.1.1"
},
"devDependencies": {
"async": "^2.6.0",
"babel-eslint": "^10.0.1",
"create-react-class": "^15.6.3",
"eslint": "^5.6.1",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "^1.10.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"files": [
"CHANGELOG.md",
"index.js",
"LICENSE",
"package.json",
"PATENTS",
"README.md"
]
}