-
-
Notifications
You must be signed in to change notification settings - Fork 495
/
Copy pathpackage.json
69 lines (69 loc) · 1.74 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
{
"name": "@craco/craco",
"description": "Create React App Configuration Override, an easy and comprehensible configuration layer for create-react-app.",
"version": "7.0.0-alpha4",
"scripts": {
"prepublish": "tsc"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/gsoft-inc/craco.git"
},
"keywords": [
"react",
"create-react-app",
"cra"
],
"contributors": [
{
"name": "Groupe Sharegate inc."
},
{
"name": "Dilan Nair",
"url": "https://www.dilanxd.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gsoft-inc/craco/issues"
},
"homepage": "https://github.com/gsoft-inc/craco",
"engines": {
"node": ">=6"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"craco": "./dist/bin/craco.js"
},
"peerDependencies": {
"react-scripts": "^5.0.0"
},
"devDependencies": {
"@babel/types": "^7.18.4",
"@jest/types": "^28.1.1",
"@types/cross-spawn": "^6.0.2",
"@types/eslint": "^8.4.3",
"@types/lodash": "^4.14.182",
"@types/semver": "^7.3.10",
"@types/webpack": "^5.28.0",
"eslint-webpack-plugin": "^3.2.0",
"react-scripts": "5.*",
"typescript": "^4.7.4"
},
"dependencies": {
"autoprefixer": "^10.4.7",
"cosmiconfig": "^7.0.1",
"cosmiconfig-typescript-loader": "^2.0.2",
"cross-spawn": "^7.0.3",
"lodash": "^4.17.21",
"semver": "^7.3.7",
"webpack-merge": "^5.8.0"
}
}