-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 2.71 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
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
102
103
104
105
{
"name": "tarec",
"version": "1.3.0",
"description": "The Awesome REact Cli",
"scripts": {
"test": "nyc -r none -a ava",
"report": "nyc report",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "npm run docs:build",
"docs:pre": "gitbook install",
"docs:watch": "gitbook serve",
"docs:build": "gitbook build -g geowarin/tarec",
"docs:publish": "gh-pages -d _book"
},
"bin": {
"tarec": "bin/tarec.js"
},
"keywords": [
"awesome",
"react",
"cli"
],
"author": "Geoffroy Warin",
"repository": {
"type": "git",
"url": "git+https://github.com/geowarin/tarec.git"
},
"bugs": {
"url": "https://github.com/geowarin/tarec/issues"
},
"homepage": "http://geowarin.github.io/tarec",
"license": "MIT",
"dependencies": {
"add-asset-html-webpack-plugin": "1.0.2",
"babel-core": "6.14.0",
"babel-loader": "6.2.5",
"babel-plugin-module-alias": "1.6.0",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.12.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "6.11.6",
"chalk": "1.1.3",
"connect-history-api-fallback": "1.3.0",
"copy-template-dir": "1.3.0",
"copy-webpack-plugin": "3.0.1",
"css-loader": "0.24.0",
"deasync": "0.1.7",
"del": "2.2.2",
"express": "4.14.0",
"extract-text-webpack-plugin": "2.0.0-beta.3",
"file-loader": "0.9.0",
"friendly-errors-webpack-plugin": "~1.0.3",
"happypack": "2.2.1",
"html-webpack-plugin": "2.22.0",
"http-proxy-middleware": "0.17.1",
"js-yaml": "3.6.1",
"json-loader": "0.5.4",
"lodash.find": "4.6.0",
"lodash.groupby": "4.6.0",
"lodash.merge": "4.6.0",
"node-notifier": "4.6.1",
"open": "0.0.5",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-noreact": "1.1.0",
"require-dir": "0.3.0",
"resolve": "1.1.7",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "2.1.0-beta.21",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.12.2",
"yargs": "5.0.0"
},
"devDependencies": {
"ava": "^0.16.0",
"coveralls": "^2.11.12",
"expect": "^1.20.2",
"gh-pages": "^0.11.0",
"gitbook-cli": "^2.3.0",
"nightmare": "^2.6.1",
"nyc": "^8.1.0",
"pkg-dir": "^1.0.0",
"portfinder": "^1.0.7",
"strip-ansi": "^3.0.1",
"temp": "^0.8.3",
"tmatch": "^2.0.1"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/utils/debug.js"
]
},
"ava": {
"files": [
"test/**/*.spec.js"
]
}
}