-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.59 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
{
"name": "react-template",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack-dev-server --inline --hot --config config/webpack.js --host 0.0.0.0 --port 3000 --mode development",
"lint": "tslint --project tsconfig.json",
"test": "npm-run-all lint test:unit:coverage",
"test:unit": "mocha --require ts-node/register -r tsconfig-paths/register -r ignore-styles --file test/setup.js --bail 'src/**/*.test.ts' 'src/**/*.test.tsx' 'test/integration/*.test.ts'",
"test:unit:watch": "mocha --require ts-node/register -r tsconfig-paths/register -r ignore-styles --file test/setup.js --watch 'src/**/*.test.ts' 'src/**/*.test.tsx' 'test/integration/*.test.ts'",
"test:unit:coverage": "nyc mocha --require ts-node/register -r tsconfig-paths/register -r ignore-styles --file test/setup.js --bail 'src/**/*.test.ts' 'src/**/*.test.tsx' 'test/integration/*.test.ts'",
"test:e2e": "mocha --require ts-node/register -r tsconfig-paths/register --bail --timeouts 10000 'test/e2e/*.test.ts'",
"build": "webpack -p --config config/webpack.js",
"precommit": "npm-run-all lint test:unit:coverage",
"prepush": "npm-run-all precommit"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit",
"pre-push": "yarn prepush"
}
},
"nyc": {
"all": true,
"check-coverage": true,
"extension": [
".ts",
".tsx"
],
"include": [
"src"
],
"exclude": [
"config",
"coverage",
"dist",
"test",
"**/*.d.ts",
"**/*.test.ts",
"**/*.test.tsx"
],
"reporter": [
"text",
"html"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.1.7",
"@types/classnames": "^2.2.8",
"@types/enzyme": "^3.9.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jsdom": "^12.2.4",
"@types/mocha": "^5.2.7",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.0.9",
"@types/react-router-dom": "^4.3.3",
"@types/reactstrap": "^8.0.1",
"@types/webpack-env": "^1.13.9",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"file-loader": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^1.3.4",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.5.0",
"ignore-styles": "^5.0.1",
"jest": "^24.8.0",
"jsdom": "^15.1.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.6.0",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"raw-loader": "^2.0.0",
"react-hot-loader": "^4.8.4",
"redux-devtools-extension": "^2.13.8",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.1",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.17.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5",
"url-loader": "^2.0.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"axios": "^0.18.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.4.0",
"fetch-intercept": "^2.3.1",
"history": "^4.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"redux-react-hook": "^3.3.2",
"redux-saga": "^1.0.2"
}
}