-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
91 lines (91 loc) · 2.42 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
{
"name": "generator-react-firebase",
"version": "9.0.0",
"description": "React and Firebase project generator (with option for Redux).",
"main": "generators/index.js",
"scripts": {
"lint": "eslint generators test",
"lint:fix": "npm run lint -- --fix",
"test": "mocha -R spec ./test/unit/** && npm run test:clean",
"test:cov": "nyc --reporter=lcov --reporter=html npm test",
"test:clean": "rimraf test/tmp",
"prepare": "husky install"
},
"dependencies": {
"chalk": "^4.1.2",
"command-exists": "^1.2.9",
"glob": "^7.2.0",
"lodash": "^4.17.21",
"semver": "^7.3.5",
"yeoman-generator": "^5.4.2",
"yosay": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.8",
"@babel/register": "^7.15.3",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^3.6.0",
"yeoman-test": "^6.2.0"
},
"homepage": "https://github.com/prescottprue/generator-react-firebase",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prescottprue/generator-react-firebase.git"
},
"author": {
"name": "Prescott Prue",
"url": "https://github.com/prescottprue"
},
"keywords": [
"react",
"redux",
"firebase",
"react-firebase",
"redux-firebase",
"react-redux-firebase",
"reactfire",
"generator-react",
"generator-redux",
"yeoman-generator",
"hooks",
"react-scripts"
],
"files": [
"generators"
],
"lint-staged": {
"*.{json,md,yaml,yml}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}