This repository was archived by the owner on May 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.62 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.62 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
125
126
127
128
{
"name": "@therapy/react-typescript-boilerplate",
"version": "1.0.0",
"description": "React Typescript Boilerplate",
"keywords": [
"React",
"Typescript",
"Boilerplate"
],
"homepage": "https://therapy.github.io",
"bugs": {
"email": "therapyspb@yandex.ru",
"url": "https://github.com/therapy/react-typescript-boilerplate/issues"
},
"license": "MIT",
"author": {
"name": "Ilya Klimov",
"email": "therapyspb@yandex.ru",
"url": "https://therapy.github.io"
},
"browser": "/src/index.tsx",
"repository": {
"type": "git",
"url": "git+https://github.com/therapy/react-typescript-boilerplate.git"
},
"private": true,
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js --progress --hide-modules"
},
"browserslist": {
"production": [
"> 1%",
"last 2 versions",
"Firefox ESR"
],
"legacyBrowsers": [
"> 1%",
"last 2 versions",
"Firefox ESR"
],
"modernBrowsers": [
"last 2 Chrome versions",
"not Chrome < 60",
"last 2 Safari versions",
"not Safari < 10.1",
"last 2 iOS versions",
"not iOS < 10.3",
"last 2 Firefox versions",
"not Firefox < 54",
"last 2 Edge versions",
"not Edge < 15"
]
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.3.4",
"@babel/preset-env": "7.3.4",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@babel/register": "7.0.0",
"@babel/runtime": "7.3.4",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.2",
"@types/webpack": "4.4.25",
"autoprefixer": "9.5.0",
"babel-loader": "8.0.5",
"clean-webpack-plugin": "2.0.1",
"copy-webpack-plugin": "5.0.1",
"create-symlink-webpack-plugin": "1.0.1",
"critical": "1.3.4",
"css-loader": "2.1.1",
"cssnano": "4.1.10",
"dotenv": "7.0.0",
"file-loader": "3.0.1",
"fork-ts-checker-webpack-plugin": "1.0.0",
"git-rev-sync": "1.12.0",
"glob-all": "3.1.0",
"html-critical-webpack-plugin": "2.1.0",
"ignore-loader": "0.1.2",
"imagemin": "6.0.0",
"imagemin-gifsicle": "6.0.1",
"imagemin-mozjpeg": "8.0.0",
"imagemin-optipng": "6.0.0",
"imagemin-svgo": "7.0.0",
"imagemin-webp": "5.0.0",
"imagemin-webp-webpack-plugin": "3.1.0",
"img-loader": "3.0.1",
"mini-css-extract-plugin": "0.5.0",
"moment": "2.24.2",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss": "7.0.14",
"postcss-extend": "1.0.5",
"postcss-hexrgba": "1.0.1",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-nested": "4.1.2",
"postcss-nested-ancestors": "2.0.0",
"postcss-simple-vars": "5.0.2",
"react-hot-loader": "4.8.0",
"resolve-url-loader": "3.0.1",
"sane": "4.1.0",
"save-remote-file-webpack-plugin": "1.0.2",
"style-loader": "0.23.1",
"symlink-webpack-plugin": "0.2.0",
"terser-webpack-plugin": "1.2.3",
"ts-node": "8.0.3",
"tslint": "5.14.0",
"typescript": "3.3.3",
"webapp-webpack-plugin": "2.6.1",
"webpack": "4.29.6",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.0",
"webpack-dashboard": "3.0.0",
"webpack-dev-server": "3.2.1",
"webpack-manifest-plugin": "2.0.4",
"webpack-merge": "4.2.1",
"webpack-notifier": "1.7.0",
"workbox-webpack-plugin": "4.1.1"
},
"dependencies": {
"@babel/polyfill": "7.2.5",
"react": "16.8.4",
"react-dom": "16.8.4"
}
}