-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 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
{
"name": "retax-server",
"version": "1.1.3",
"description": "Retax server",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"typings": "libTs/index.d.ts",
"scripts": {
"build": "builder run build",
"lint": "builder run lint",
"prepublish": "npm test && builder run build",
"pretest": "npm run typings && builder run lint",
"preversion": "npm test && builder run build",
"start": "builder run build:commonjs:watch",
"tdd": "builder run test:all:watch",
"test:once": "builder run test:all",
"test": "builder run test:all:coverage",
"typings": "builder run typings:install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retaxJS/retax"
},
"keywords": [
"react",
"redux",
"framework",
"universal",
"retax"
],
"author": "Thomas Hourlier <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/retaxJS/retax/issues"
},
"homepage": "https://github.com/retaxJS/retax",
"dependencies": {
"builder-ts-library": "~0.0.6",
"inversify": "2.0.0-beta.10",
"inversify-dts": "3.0.0",
"retax-core": "^1.2.1",
"retax-di": "^1.1.2",
"retax-utils": "^1.0.2"
},
"devDependencies": {
"builder": "^2.9.1",
"builder-ts-library-dev": "~0.0.6",
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"react-dom": "^0.14.0 || ^15.0.0-0",
"react-helmet": "^3.0.1",
"react-redux": "^4.4.5",
"react-router-redux": "^4.0.2",
"react-router": "^2.2.4",
"react": "^0.14.0 || ^15.0.0-0",
"reflect-metadata": "^0.1.3"
},
"peerDependencies": {
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"react-dom": "^0.14.0 || ^15.0.0-0",
"react-router": "^2.2.4",
"reflect-metadata": "^0.1.3",
"retax-core": "^1.2.1",
"retax-di": "^1.1.2",
"retax-utils": "^1.0.2"
}
}