-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.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
{
"name": "create-react-boilerplates",
"version": "2.4.0",
"type": "module",
"bin": {
"create-react-boilerplates": "index.js",
"crb-app": "index.js"
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "yarn build"
},
"keywords": [
"react",
"create-react-app",
"template",
"typescript",
"eslint",
"react-vite",
"boilerplate",
"react-boilerplate"
],
"description": "Create React Boilerplate",
"repository": "https://github.com/sj-distributor/create-react-boilerplates",
"author": "Simon.F",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=14.18.0"
},
"bugs": {
"url": "https://github.com/sj-distributor/create-react-boilerplates/issues"
},
"files": [
"dist",
"index.js",
"templates",
"templates/templates-*"
],
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/minimist": "^1.2.2",
"@types/prompts": "^2.4.4",
"cross-spawn": "^7.0.3",
"kolorist": "^1.7.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"unbuild": "^1.1.2",
"@sj-distributor/eslint-plugin-react": "^0.7.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^46.0.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}