-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "koa2-jsx",
"version": "1.2.0",
"description": "A Koa2 middleware to render JSX templates with Redux support",
"main": "build",
"scripts": {
"t": "zoroaster --babel",
"test": "zoroaster test/spec --babel",
"test-watch": "zoroaster build/test/spec --babel --watch",
"lint": "eslint .",
"build": "babel src --out-dir build --source-maps",
"example/": "node example/register"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git://github.com/artdecocode/koa2-jsx.git"
},
"keywords": [
"koa2",
"jsx",
"view",
"template",
"react",
"redux",
"server",
"backend",
"universal"
],
"author": "Anton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/artdecocode/koa2-jsx/issues"
},
"homepage": "https://github.com/artdecocode/koa2-jsx#readme",
"devDependencies": {
"@babel/cli": "7.0.0-beta.47",
"@babel/core": "7.0.0-beta.47",
"@babel/plugin-syntax-object-rest-spread": "7.0.0-beta.47",
"@babel/plugin-transform-modules-commonjs": "7.0.0-beta.47",
"@babel/preset-react": "7.0.0-beta.47",
"@babel/register": "7.0.0-beta.47",
"babel-plugin-react-require": "3.0.0",
"babel-plugin-transform-rename-import": "2.2.0",
"catchment": "2.0.1",
"eslint": "4.19.1",
"eslint-config-artdeco": "1.0.0",
"eslint-plugin-react": "7.8.2",
"koa": "2.5.1",
"koa-static": "4.0.3",
"rqt": "1.1.0",
"snapshot-context": "1.1.7",
"source-map-support": "0.5.6",
"zoroaster": "2.0.0"
},
"dependencies": {
"html": "1.0.0",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-redux": "5.0.7",
"redux": "4.0.0"
}
}