-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.06 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
{
"name": "@reintroducing/rsr",
"version": "1.2.0",
"description": "A webpack powered script runner for React projects.",
"repository": "https://github.com/reintroducing/rsr",
"main": "bin/cli.js",
"bin": {
"rsr": "bin/cli.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"release": "npm-release -- public"
},
"author": "Matt Przybylski",
"license": "MIT",
"eslintConfig": {
"extends": [
"@spothero",
"plugin:prettier/recommended",
"prettier/babel",
"prettier/react"
]
},
"prettier": "@spothero/prettier-config",
"devDependencies": {
"@spothero/commitlint-config": "2.1.2",
"@spothero/eslint-config": "1.9.1",
"@spothero/npm-publisher": "2.3.2",
"@spothero/prettier-config": "0.1.1"
},
"dependencies": {
"@hot-loader/react-dom": "16.13.0",
"arg": "4.1.3",
"autoprefixer": "9.8.5",
"babel-loader": "8.1.0",
"chalk": "4.1.0",
"cosmiconfig": "6.0.0",
"cross-spawn": "7.0.3",
"css-loader": "4.0.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "4.0.2",
"file-loader": "6.0.0",
"html-webpack-plugin": "4.3.0",
"image-webpack-loader": "6.0.0",
"inquirer": "7.3.3",
"mini-css-extract-plugin": "0.9.0",
"ncp": "2.0.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"pkg-install": "1.0.0",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.7.0",
"react-hot-loader": "4.12.21",
"sass": "1.26.10",
"sass-loader": "9.0.2",
"sass-resources-loader": "2.0.3",
"stylelint-webpack-plugin": "0.10.5",
"terser-webpack-plugin": "3.0.7",
"webpack": "4.44.0",
"webpack-assets-manifest": "3.1.1",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"peerDependencies": {
"core-js": "^3.6.5",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.7"
}
}