-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.92 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
100
101
102
103
104
105
{
"name": "self-react-app",
"version": "0.0.0-development",
"description": "A custom built create react app like CLI",
"main": "dist/sra.js",
"files": [
"dist/sra.js",
"templates/**/*",
"package.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"semantic-release": "semantic-release",
"commit": "git-cz",
"prebuild": "rm -rf dist && mkdir dist",
"build": "babel -o dist/sra.js bin/sra.js"
},
"repository": {
"type": "git",
"url": "https://github.com/maumercado/self_react_app_cli.git"
},
"keywords": [
"react",
"cli",
"react-reach",
"sass",
"hot-reload",
"styled-components"
],
"bin": {
"self-react-app": "./dist/sra.js"
},
"author": "Mauricio Mercado <[email protected]> (https://maumercado.com)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.4.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"commitizen": "^3.1.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.0.0",
"node-sass": "^4.11.0",
"prettier-stylelint": "^0.4.2",
"react-hot-loader": "^4.6.3",
"sass-loader": "^7.1.0",
"semantic-release": "^15.13.16",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"url-loader": "^2.0.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@reach/router": "^1.2.1",
"boxen": "^4.0.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"fs-extra": "^8.0.1",
"ora": "^3.4.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.3.1",
"validate-npm-package-name": "^3.0.0",
"whatwg-fetch": "^3.0.0"
},
"babel": {
"presets": [
"@babel/env"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}