-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 3.6 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "webpack-react-typescript-boilerplate",
"version": "0.0.1",
"description": "webpack-react-typescript-boilerplate",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --compilers ts:ts-node/register --recursive --require should --require ./test-setup.ts ./app/**/*.spec.ts*",
"test:watch": "npm test -- --watch --watch-extensions tsx,ts",
"dev": "cross-env NODE_ENV=development ts-node server.ts",
"dist": "cross-env NODE_ENV=production webpack --config webpack.prod.ts",
"lint": "tslint app/**/*.ts* stubs/**/*.ts test/**/*.ts ./*.ts",
"lint:fix": "npm run lint -- --fix",
"pree2e": "run-if-changed -f app/**/* -c \"cross-env NODE_ENV=e2e webpack --config webpack.prod.ts\"",
"e2e": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 wdio",
"coverage": "nyc npm test"
},
"keywords": [],
"author": "el-davo",
"license": "MIT",
"repository": {},
"devDependencies": {
"@types/enzyme": "^2.8.9",
"@types/faker": "^4.1.0",
"@types/jsdom": "^2.0.30",
"@types/material-ui": "^0.17.16",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"@types/proxyquire": "^1.3.27",
"@types/should": "^8.1.30",
"@types/sinon": "^1.16.35",
"@types/webdriverio": "^4.6.1",
"awesome-typescript-loader": "^3.0.7",
"babel-core": "^6.24.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"babel-webpack-plugin": "^0.1.1",
"clean-webpack-plugin": "^0.1.16",
"compression-webpack-plugin": "^0.3.2",
"cross-env": "^3.1.4",
"css-loader": "^0.28.4",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"extract-text-webpack-plugin": "^2.0.0",
"faker": "^4.1.0",
"fetch-mock": "^5.10.0",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^9.11.0",
"json-server": "^0.10.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"open": "^0.0.5",
"proxyquire": "^1.7.11",
"react-addons-test-utils": "^15.6.2",
"react-hot-loader": "next",
"react-test-renderer": "^16.0.0",
"run-if-changed": "^0.0.6",
"selenium-standalone": "^6.1.0",
"should": "^11.2.0",
"sinon": "^1.17.7",
"style-loader": "^0.18.2",
"ts-node": "^2.1.0",
"tslint": "^4.4.2",
"tslint-loader": "^3.4.2",
"tslint-react": "^2.4.0",
"typescript": "2.3.1",
"wdio-mocha-framework": "^0.5.9",
"wdio-phantomjs-service": "^0.2.2",
"wdio-selenium-standalone-service": "^0.0.8",
"wdio-spa-server-service": "^1.0.0",
"webdriverio": "^4.6.2",
"webpack": "3.0.0",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^3.0.0",
"whatwg-fetch": "^2.0.3",
"winston": "^2.3.1"
},
"dependencies": {
"@types/react": "^16.0.7",
"@types/react-dom": "^15.5.5",
"@types/react-redux": "^4.4.36",
"@types/react-router": "^3.0.4",
"@types/react-router-redux": "^4.0.41",
"@types/redux-saga": "^0.10.5",
"material-ui": "^0.18.6",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^3.0.1",
"redux-immutable-state-invariant": "^1.2.4",
"redux-logger": "^2.8.1",
"redux-saga": "^0.14.3",
"requirejs": "^2.3.3"
},
"nyc": {
"include": [
"app/**/*.tsx",
"app/**/*.ts"
],
"extension": [
".ts",
".tsx"
],
"exclude": [
"app/**/*.spec.ts*"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"lcov"
],
"all": true,
"report-dir": "./test_results/coverage"
}
}