-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.64 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-ts-boilerplate",
"version": "0.6.0",
"description": "Boilerplate for React/TypeScript application.",
"main": "index.js",
"author": "Codibly",
"license": "MIT",
"scripts": {
"dev": "node app/server",
"build:dev": "NODE_ENV=development webpack --config builder/webpack.config.js",
"build": "NODE_ENV=production webpack --config builder/webpack.config.js",
"serve": "NODE_ENV=production node app/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "rimraf coverage && jest --coverage",
"test:ci": "rimraf coverage && jest --coverage --testResultsProcessor=./node_modules/jest-junit",
"lint": "tslint \"src/**/*.ts?(x)\" \"app/**/*.ts?(x)\" -t stylish",
"lint:fix": "tslint \"src/**/*.ts?(x)\" \"app/**/*.ts?(x)\" -t stylish --fix",
"lint:ci": "tslint \"src/**/*.ts?(x)\" \"app/**/*.ts?(x)\" -t checkstyle -o artifact/checkstyle.xml"
},
"keywords": [
"boilerplate",
"webpack",
"react",
"redux",
"typescript",
"codibly"
],
"dependencies": {
"axios": "^0.16.2",
"body-parser": "^1.17.2",
"chalk": "^1.1.3",
"connect-multiparty": "^2.0.0",
"cors": "^2.8.3",
"dotenv-safe": "^4.0.4",
"express": "^4.15.2",
"glamor": "^2.20.25",
"glamorous": "^3.23.4",
"history": "^4.6.3",
"hoist-non-react-statics": "^1.2.0",
"immutable": "^3.8.1",
"immutable-models": "^0.1.2",
"material-colors": "^1.2.5",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.6.0",
"react-addons-perf": "^15.4.2",
"react-addons-transition-group": "^15.6.0",
"react-dom": "^15.6.1",
"react-icons": "^2.2.5",
"react-redux": "^5.0.5",
"react-transition-group": "^1.2.0",
"reactstrap": "^4.5.0",
"redux": "^3.7.0",
"redux-actions": "^2.0.3",
"redux-detector": "^0.6.1",
"redux-little-router": "^13.2.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"tslib": "^1.7.0",
"url-pattern": "^1.0.3",
"yargs": "^8.0.2"
},
"devDependencies": {
"@types/classnames": "^2.2.0",
"@types/history": "^4.6.0",
"@types/react": "^15.0.31",
"@types/react-dom": "^15.5.1",
"@types/react-intl": "^2.3.1",
"@types/react-redux": "^4.4.45",
"@types/reactstrap": "^4.3.6",
"@types/redux-actions": "^1.2.6",
"@types/redux-devtools": "^3.0.38",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"file-loader": "^0.11.2",
"fork-ts-checker-webpack-plugin": "^0.2.3",
"html-webpack-plugin": "^2.28.0",
"jest": "^20.0.4",
"jest-junit": "^1.5.1",
"json-loader": "^0.5.4",
"loader-utils": "^1.1.0",
"lodash.throttle": "^4.1.1",
"react-addons-test-utils": "^15.6.0",
"react-hot-loader": "^1.3.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"ts-jest": "^20.0.6",
"ts-loader": "^2.2.0",
"tslint": "^5.4.3",
"tslint-react": "^3.0.0",
"typescript": "^2.3.4",
"webpack": "^3.0.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/test/.*\\.spec\\.(ts|tsx)$",
"collectCoverageFrom": [
"src/**/*"
],
"coveragePathIgnorePatterns": [
"/src/.*\\.d\\.ts$"
],
"coverageDirectory": "<rootDir>/artifact/coverage",
"coverageReporters": [
"html",
"text",
"cobertura"
],
"mapCoverage": true
},
"jest-junit": {
"suiteName": "Jest Tests",
"output": "./artifact/junit.xml"
}
}