-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.64 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ufs-react-doc",
"version": "1.5.1",
"description": "React props generator for TypeScript projects",
"main": "lib/index.js",
"bin": "lib/bin/index.js",
"scripts": {
"watch": "tsc -w",
"test": "jest --watchAll",
"prepublish": "tsc && cp src/client/App.css lib/client/App.css",
"start": "npm run prepublish && node lib/server/index.js"
},
"repository": {
"type": "git",
"url": "ssh://git@10.21.25.60:8878/ufsfw/react-ts-doc.git"
},
"keywords": [
"react",
"props",
"typescript",
"ts",
"generator"
],
"author": "Sberbank",
"license": "Apache-2.0",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test/?/.*.test.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"dependencies": {
"awesome-typescript-loader": "^3.2.3",
"babel-traverse": "7.0.0-beta.1",
"babylon": "7.0.0-beta.25",
"body-parser": "1.16.0",
"bootstrap": "3.3.7",
"cookie-parser": "1.4.3",
"css-loader": "^0.28.0",
"debug": "2.6.9",
"es6-shim": "^0.35.3",
"express": "4.14.1",
"express-react-views": "0.10.2",
"extract-text-webpack-plugin": "^2.1.0",
"glob": "^7.1.2",
"highlight.js": "^9.12.0",
"inquirer": "^3.1.0",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"mkdirp": "^0.5.1",
"mkpath": "^1.0.0",
"morgan": "1.7.0",
"object-assign": "^4.1.1",
"postcss-loader": "2.0.6",
"raw-loader": "^0.5.1",
"react": "15.4.2",
"react-bootstrap": "0.30.7",
"react-docgen-typescript": "1.0.2",
"react-dom": "15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.3",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"serve-favicon": "2.3.2",
"style-loader": "^0.16.1",
"tarball-extract": "0.0.3",
"typescript": "2.3.4",
"webpack": "^2.3.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0"
},
"devDependencies": {
"@types/babel-traverse": "^6.7.16",
"@types/babylon": "^6.16.0",
"@types/es6-shim": "^0.31.34",
"@types/express": "4.0.35",
"@types/inquirer": "0.0.34",
"@types/jest": "^21.1.8",
"@types/marked": "0.0.28",
"@types/mkdirp": "^0.3.29",
"@types/node": "^7.0.5",
"@types/object-assign": "^4.0.30",
"@types/react": "^15.0.28",
"@types/react-bootstrap": "0.0.45",
"@types/react-dom": "15.5.0",
"@types/request": "^0.0.43",
"@types/serve-favicon": "^2.2.28",
"jest": "^21.2.1",
"react-addons-test-utils": "^15.6.2",
"ts-jest": "^21.2.3"
}
}