-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.04 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
92
93
94
{
"name": "cra-template-mag-react-template",
"version": "1.5.4",
"date": "2023-04-10",
"copyright": "2023",
"description": "The MAG template for Create React App.",
"keywords": [
"react",
"create-react-app",
"cra-template",
"template",
"maps",
"mag"
],
"private": false,
"main": "template.json",
"repository": {
"type": "git",
"url": "https://github.com/AZMAG/mag-react-template"
},
"author": {
"name": "MAG Regional Analytics",
"email": "mag@azmag.gov",
"url": "https://www.azmag.gov/About-Us/Divisions/Regional-Analytics-Division"
},
"contributors": [
{
"name": "Vern Wolfley",
"email": "vwolfley@azmag.gov"
},
{
"name": "Jack Fairfield",
"email": "jfairfield@azmag.gov"
}
],
"bugs": {
"url": "https://github.com/facebook/create-react-app/issues"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"customize-cra": "^1.0.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"mag-prettier-config": "^1.1.1",
"prettier": "^2.7.1",
"replace-in-file": "^6.3.5"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run replace && react-scripts build",
"prepublishOnly": "npm run replace",
"replace": "node replaceScripts",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"prettier": "mag-prettier-config",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
],
"env": {
"browser": true,
"node": true,
"es6": true
}
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.2.0",
"npm": ">=8.0.0"
},
"files": [
"template",
"template.json"
],
"license": "MIT"
}