-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "generator-example-generator",
"version": "0.0.1",
"description": "Example Yeoman generator",
"type": "module",
"main": "src/app/index.js",
"repository": "https://github.com/psychobolt/yeoman-generator-boilerplate",
"author": "psychobolt",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"flow-typed-update": "yarn node flow-typed-update.js",
"flow-typed-install": "yarn rimraf shared/flow-typed/npm && yarn run flow-typed-update",
"flow-typed-create-stub": "yarn flow-typed create-stub --libdefDir shared/flow-typed/",
"test": "yarn jest --passWithNoTests",
"lint": "yarn eslint \"**/*.?(c|m)js\""
},
"keywords": [
"yeoman-generator"
],
"dependencies": {
"yeoman-generator": "5.10.0"
},
"devDependencies": {
"@babel/core": "7.24.5",
"@babel/eslint-parser": "7.24.5",
"@babel/plugin-syntax-flow": "7.24.1",
"@babel/plugin-transform-react-jsx": "7.23.4",
"@yarnpkg/core": "3.7.0",
"@yarnpkg/sdks": "3.1.2",
"app-root-path": "3.1.0",
"c8": "9.1.0",
"eslint": "8.13.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.4.0",
"execa": "9.0.0",
"flow-bin": "0.175.1",
"flow-typed": "3.9.0",
"isbinaryfile": "5.0.2",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"jest-light-runner": "0.6.0",
"rimraf": "5.0.5",
"slash": "5.1.0",
"symlink-dir": "6.0.0",
"yeoman-environment": "3.19.3",
"yeoman-test": "6.3.0",
"yo": "5.0.0"
},
"packageManager": "[email protected]"
}