-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 965 Bytes
/
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
{
"name": "@launchpadlab/lp-subsection-generator",
"version": "10.1.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">= 12"
},
"scripts": {
"start": "node ./index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint index.js"
},
"bin": {
"generate-subsection": "./index.js",
"generate-ionic-subsection": "./generate-ionic-subsection.js"
},
"author": "dpikt",
"license": "ISC",
"dependencies": {
"commander": "^9.4.1",
"fs-extra": "^11.1.0",
"glob": "^8.0.3",
"lodash": "^4.17.11",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@launchpadlab/eslint-config": "^2.1.0",
"eslint": "^7.32.0"
},
"peerDependencies": {
"@reduxjs/toolkit": "^2.2.1",
"react": ">= 16",
"react-redux": "^8.0.0 || ^9.1.0",
"react-router-dom": "^4.0.0 || ^5.0.0",
"redux": "^5.0.1"
},
"optionalDependencies": {
"@ionic/react": ">= 5"
}
}