-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.19 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
{
"name": "react-app-boilerplate",
"version": "1.0.0",
"main": "index.js",
"author": "mediafactory.cz",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf dist",
"dev": "webpack",
"watch": "webpack --watch",
"build:dev": "yarn clean && webpack",
"build:production": "yarn clean && webpack --env.mode production --optimize-minimize --define process.env.NODE_ENV=\"'production'\"",
"build:analyze": "webpack --env.mode production --env.presets analyze --optimize-minimize --define process.env.NODE_ENV=\"'production'\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint:js": "eslint --ext .js,.ts,.tsx,.jsx src",
"lint:style": "stylelint --color src/**/*.scss",
"format:js": "prettier --write src/**/*.{js,ts,jsx,tsx}",
"format:style": "stylelint --fix src/**/*.scss"
},
"dependencies": {
"@babel/runtime": "^7.8.3",
"@babel/runtime-corejs3": "^7.8.3",
"confusing-browser-globals": "^1.0.9",
"core-js": "^3.6.4",
"dotenv": "^8.2.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"@types/jest": "^24.9.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"assets-webpack-plugin": "^3.9.10",
"autoprefixer": "^9.7.4",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"cssnano-webpack-plugin": "^1.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"postcss-calc": "^7.0.1",
"postcss-custom-media": "^7.0.8",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^6.0.1",
"prettier": "^1.19.1",
"prettier-cli": "^0.1.0",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-scss": "^3.13.0",
"stylelint-webpack-plugin": "^1.2.1",
"terser-webpack-plugin": "^2.3.2",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^4.2.2"
}
}