-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "@skan-io/webpack-config-base",
"version": "0.0.0-semantically-released",
"description": "A base webpack/dev-server config for react apps that use css",
"main": "index.js",
"scripts": {
"default": "run clean test",
"clean": "rimraf ./build",
"build": "run build:*",
"build:babel": "babel src --out-dir build/pkg --ignore '**/*.test.js'",
"build:files": "cp package.json ./README.md ./LICENSE build/pkg/",
"test": "run lint jest",
"lint": "run lint:*",
"lint:js": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
"lint:md": "remark --no-stdout --use remark-lint *.md",
"jest": "jest --runInBand --no-cache ",
"cd": "run clean build release",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skan-io/webpack-config-base.git"
},
"keywords": [
"Webpack",
"config",
"react"
],
"author": "Nick Manks",
"license": "MIT",
"bugs": {
"url": "https://github.com/skan-io/webpack-config-base/issues"
},
"homepage": "https://github.com/skan-io/webpack-config-base#readme",
"dependencies": {
"autoprefixer": "^9.5.1",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "2.1.1",
"file-loader": "3.0.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.2",
"react-entry-loader": "^2.2.4",
"read-package-json": "2.0.13",
"sass-loader": "^7.1.0",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "3.3.0",
"webpack-dev-server": "^3.2.1"
},
"devDependencies": {
"@skan-io/babel-config-nodejs": "^1.0.1",
"@skan-io/eslint-config-base": "^1.0.3",
"@skan-io/jest-config-base": "^1.1.0",
"@skan-io/release-config": "^1.0.1",
"@skan-io/remark-config": "^1.0.1",
"cz-conventional-changelog": "2.1.0",
"npx-run": "^2.1.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}