This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
forked from TypeStrong/ts-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.33 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
{
"name": "es6-babel-react-flux-karma",
"version": "1.0.0",
"description": "ES6 + TypeScript + Babel + React + Karma: The Secret Recipe",
"main": "index.js",
"scripts": {
"test": "karma start --reporters mocha,junit --single-run --browsers PhantomJS",
"start": "gulp serve",
"watch": "gulp watch",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/typescriptsamples.git"
},
"keywords": [
"React",
"Flux",
"ES2016",
"typescript"
],
"author": "John Reilly",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/typescriptsamples/issues"
},
"homepage": "https://github.com/Microsoft/TypeScriptSamples/tree/master/es6-babel-react-flux-karma#readme",
"devDependencies": {
"@types/fbemitter": "^2.0.32",
"@types/flux": "0.0.32",
"@types/jasmine": "^2.5.35",
"@types/react": "^16.0.0",
"@types/react-test-renderer": "^16.0.0",
"@types/react-bootstrap": "0.31.6",
"@types/react-dom": "^16.0.0",
"babel": "^6.0.0",
"babel-core": "^6.0.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-react": "^6.0.0",
"del": "^2.0.2",
"eslint": "^2.0.0",
"express": "^4.13.3",
"glob": "^7.0.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-cached": "^1.1.0",
"gulp-cssmin": "^0.1.7",
"gulp-eslint": "^2.0.0",
"gulp-if": "^2.0.0",
"gulp-inject": "^3.0.0",
"gulp-notify": "^2.2.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-streamify": "1.0.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"jasmine-core": "^2.3.4",
"karma": "^1.2.0",
"karma-jasmine": "^1.0.0",
"karma-junit-reporter": "^1.0.0",
"karma-mocha-reporter": "^2.0.0",
"karma-notify-reporter": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^2.0.1",
"phantomjs-prebuilt": "^2.1.4",
"react-test-renderer": "^16.0.0",
"ts-loader": "^3.0.3",
"typescript": "^2.1.4",
"webpack": "^3.8.1",
"webpack-fail-plugin": "^1.0.4",
"webpack-notifier": "^1.2.1"
},
"dependencies": {
"babel-polyfill": "^6.0.0",
"flux": "^2.0.3",
"fbemitter": "^2.0.2",
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}