forked from loriensleafs/webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "webpack-boilerplate",
"version": "1.1.0",
"description": "Webpack 4 boilerplate: Babel, TypeScript, Sass, hot reload, and dev server",
"main": "index.js",
"scripts": {
"build": "webpack",
"lint": "tslint -p tsconfig.json -c tslint.json && stylelint src/**/*.scss",
"watch": "webpack --watch",
"start": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taniarascia/webpack-boilerplate.git"
},
"keywords": [
"webpack",
"sass",
"scss",
"primitive-ui",
"boilerplate",
"css",
"typescript"
],
"author": "Tania Rascia",
"license": "MIT",
"bugs": {
"url": "https://github.com/taniarascia/webpack-boilerplate/issues"
},
"homepage": "https://github.com/taniarascia/webpack-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.4.4",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"tslint-consistent-codestyle": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.4",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}