-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.06 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.06 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
{
"name": "webstack",
"version": "0.2.0",
"description": "Development stack for building modern web applications or libraries based on webpack using modified TypeScript 1.8 together with Babel (async/await and generators in ES5)",
"author": "Marek Štípek <mario.dweller@seznam.cz>",
"license": "MIT",
"keywords": [
"typescript",
"babel",
"webpack",
"react",
"karma",
"mocha",
"coverage",
"async",
"await"
],
"repository": {
"type": "git",
"url": "git://github.com/vaniocz/typescript-dev-stack.git"
},
"scripts": {
"postinstall": "node_modules/.bin/typings install",
"start": "webpack-dev-server --hot --content-base ./build",
"test": "npm run mocha && npm run karma",
"build": "webpack",
"build:dev": "webpack -d",
"lint": "tslint \"!(node_modules|typings)/**/*.ts?(x)\"",
"mocha": "mocha-webpack --webpack-config webpack.config.js \"tests/runner.js\" --colors",
"mocha:coverage": "mocha-webpack --webpack-config webpack.config.js \"tests/runner.js\" -R mocha-multi --reporter-options spec=-,remap-istanbul/lib/mochaRemapIstanbul=- --colors",
"karma": "karma start",
"karma:browser": "karma start",
"karma:server": "karma start",
"karma:browser:all": "karma start --detectBrowsers",
"karma:coverage": "karma start",
"karma:browser:coverage": "karma start",
"karma:server:coverage": "karma start"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"babel-polyfill": "^6.7.4",
"jquery": "^2.2.2",
"lodash": "^4.11.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"reflect-metadata": "^0.1.3",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"awesome-typescript-loader": "^0.16.2",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"chokidar": "^1.4.3",
"copy-webpack-plugin": "^1.1.1",
"css-loader": "^0.23.1",
"electron-prebuilt": "^0.37.6",
"extract-text-webpack-plugin": "^1.0.1",
"imports-loader": "^0.6.5",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-detect-browsers": "^2.1.0",
"karma-electron-launcher": "^0.1.0",
"karma-firefox-launcher": "^0.1.7",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-source-map-support": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"minimist": "^1.2.0",
"mocha": "^2.4.5",
"mocha-multi": "^0.9.0",
"mocha-webpack": "^0.3.0",
"postcss-loader": "^0.8.2",
"react-hot-loader": "^1.3.0",
"remap-istanbul": "github:maryo/remap-istanbul",
"sinon": "^1.17.3",
"style-loader": "^0.13.1",
"tslint": "^3.7.1",
"tslint-microsoft-contrib": "^2.0.2",
"typescript": "github:maryo/TypeScript#bindOperator-1.8",
"typings": "^1.0.4",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-split-by-path": "0.0.8"
}
}