-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.17 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
106
107
108
109
110
{
"name": "fl-cli",
"version": "1.0.1",
"description": "FoyerLive CLI",
"scripts": {
"postinstall:husky": "node node_modules/husky/lib/installer/bin install",
"build:clean": "rimraf bin",
"build:lib": "cross-env NODE_ENV=production babel src/lib --out-dir lib",
"build:bin": "cross-env NODE_ENV=production babel src/bin --out-dir bin",
"start:lib": "NODE_ENV=production babel --watch src/lib --out-dir lib",
"start:bin": "NODE_ENV=production babel --watch src/bin --out-dir bin",
"release": "semantic-release --no-ci --tag-format es-v\\${version}",
"commit": "git-cz",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foyerlive/fl-cli.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/foyerlive/fl-cli/issues"
},
"homepage": "https://github.com/foyerlive/fl-cli#readme",
"bin": "./bin/cli.js",
"main": "lib/index.js",
"dependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-jsx-control-statements": "^4.0.0",
"cli-prompt": "^0.6.0",
"commander": "^4.0.1",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"es6-promise": "^4.2.8",
"eslint": "^6.6.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-react": "^7.16.0",
"exports-loader": "^0.7.0",
"express": "^4.17.1",
"file-loader": "^4.2.0",
"form-data": "^3.0.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.13.0",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.12.18",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.2.1",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": "last 12 versions"
}
}
],
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
"@babel/plugin-proposal-export-default-from",
"jsx-control-statements",
"react-hot-loader/babel"
]
},
"devDependencies": {
"@foyer/commitizen-config": "^1.0.1",
"@foyer/semantic-release-config": "^1.0.4",
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/git": "^7.0.18",
"commitizen": "^4.0.3",
"cz-customizable": "^6.2.0",
"cz-customizable-ghooks": "git+https://github.com/pramod-ie/cz-customizable-ghooks.git#master",
"husky": "^3.1.0",
"semantic-release": "^15.13.31"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "node_modules/@foyer/commitizen-config"
}
}
}