-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.68 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "frontend-workflow",
"version": "0.1.0",
"description": "Frontend workflow using Webpack 4",
"author": "Yulian Alexeyev <[email protected]> (https://bitbucket.org/yulian-alexeyev)",
"keywords": [
"css",
"js",
"webpack",
"typescript",
"post-css",
"prettier",
"nvm",
"stylelint",
"tslint",
"editorconfig",
"favicons",
"bulma",
"es6"
],
"license": "MIT",
"homepage": "https://bitbucket.org/yulian-alexeyev/frontend-workflow/src",
"repository": {
"type": "git",
"url": "[email protected]:yulian-alexeyev/frontend-workflow.git"
},
"engines": {
"node": ">=10.0.0"
},
"private": false,
"sideEffects": [
"*.css"
],
"dependencies": {
"@types/throttle-debounce": "1.1.0",
"bulma": "0.7.2",
"node-sass": "^4.11.0",
"onfire.js": "2.0.0",
"throttle-debounce": "2.1.0"
},
"scripts": {
"start": "npx webpack-dev-server --open --config webpack.dev.js",
"watch": "npx webpack --watch --config webpack.dev.js",
"build": "yarn lint && yarn export",
"export": "npx webpack --config webpack.prod.js",
"lint": "yarn lint:js && yarn lint:css",
"lint:js": "npx typescript --noEmit --project .tsconfig.json && npx tslint 'src/**/*.ts' -t verbose -c .tslint.json",
"lint:css": "npx stylelint 'src/**/*.scss'"
},
"devDependencies": {
"@csstools/postcss-sass": "4.0.0",
"autoprefixer": "9.4.5",
"clean-webpack-plugin": "1.0.0",
"css-loader": "2.1.0",
"cssnano": "4.1.8",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "3.0.1",
"html-webpack-plugin": "3.2.0",
"postcss-assets": "5.0.0",
"postcss-css-variables": "0.11.0",
"postcss-extend": "1.0.5",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-nested": "4.1.1",
"postcss-preset-env": "6.5.0",
"postcss-short": "5.0.0",
"postcss-utilities": "0.8.0",
"prettier": "1.16.0",
"prettier-webpack-plugin": "1.2.0",
"sass-loader": "^7.1.0",
"script-loader": "0.7.2",
"style-loader": "0.23.1",
"stylelint": "9.10.1",
"stylelint-config-standard": "18.2.0",
"stylelint-webpack-plugin": "0.10.5",
"ts-loader": "5.3.3",
"tslint": "5.12.1",
"tslint-config-prettier": "1.17.0",
"tslint-eslint-rules": "5.4.0",
"tslint-webpack-plugin": "2.0.2",
"typescript": "3.2.2",
"webpack": "4.28.4",
"webpack-bundle-analyzer": "2.13.1",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.8",
"webpack-merge": "4.1.4",
"webpack-stream": "5.1.1"
},
"config": {
"name": "Frontend workflow",
"theme": "#fff"
},
"browserslist": [
">0.2%",
"not dead",
"ie >= 10",
"not op_mini all"
]
}