-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.96 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
{
"name": "APWebpack",
"version": "2.0.0",
"description": "WebPack: HTML, CSS, SCSS, JS, Img, Fonts",
"main": "bundle.js",
"scripts": {
"build": "npm run clean -s && npm run buildpost -s",
"buildpost": "node_modules/.bin/webpack --progress",
"clean": "shx rm -rf dist",
"prod": "webpack --mode production",
"sass": "node-sass src/app/css/style.scss dist/index.css --output-style compressed",
"lint": "eslint src",
"dev": "webpack-dashboard -- webpack-dev-server",
"test": "set NODE_ENV=test && jest",
"start": "serve -s dist",
"devStart": "node_modules/.bin/webpack-dev-server --history-api-fallback --inline --progress"
},
"author": "Alexander Panov",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-polyfill": "6.26.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-jest": "^23.6.0",
"file-loader": "^5.0.2",
"history": "^4.10.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"minimist": "^1.2.5",
"node-sass": "^4.13.1",
"postcss-cli": "^6.1.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"semantic-release": "^17.2.3",
"serialize-javascript": "^3.1.0",
"serve": "^11.3.0",
"shx": "^0.3.2",
"style-loader": "^1.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dashboard": "^3.2.0",
"webpack-dev-server": "^3.10.1"
},
"jest": {
"verbose": true,
"bail": true,
"collectCoverage": true,
"coverageReporters": [
"html"
],
"coverageDirectory": "coverage",
"moduleNameMapper": {
"\\.(jpe?g|png|gif|eot|otf|webp|svg|ttf|woff2?|mp[34]|webm|wav|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|s[ac]ss|styl)$": "<rootDir>/__mocks__/styleMock.js"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-standard": "^4.0.1",
"html-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"sass-loader": "^8.0.2"
}
}