-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.16 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
{
"name": "@wildsong/arctic",
"author": "Brian Wilson <brian@wildsong.biz>",
"license": "gpl-3.0",
"version": "0.1.1",
"description": "A web management portal for GIS servers",
"keywords": [
"react",
"gis"
],
"scripts": {
"start": "parcel serve index.html --open",
"build": "parcel build index.html",
"lint": "eslint .",
"test": "parcel serve test.html",
"clean": "rm -rf node_modules dist build"
},
"repository": {
"type": "git",
"url": "git@github.com:Wildsong/arctic.git"
},
"bugs": {
"url": "https://github.com/Wildsong/arctic/issues"
},
"homepage": "https://github.com/Wildsong/arctic#readme",
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/plugin-proposal-object-rest-spread": "^7.8.0",
"@babel/plugin-transform-object-assign": "^7.7.4",
"@babel/preset-env": "^7.8.2",
"@babel/preset-react": "^7.8.0",
"@parcel/transformer-sass": "^2.4.1",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-router-dom": "^5.3.3",
"cssnano": "^5.1.7",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"parcel": "^2.5.0"
},
"dependencies": {
"@esri/arcgis-rest-auth": "^4.0.1",
"@esri/arcgis-rest-portal": "^4.0.2",
"@esri/arcgis-rest-request": "^4.0.2",
"bootstrap": "^5.1.3",
"connected-react-router": "^6.9.2",
"react": "^18.1.0",
"react-bootstrap": "^2.3.1",
"react-dom": "^18.1.0",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread",
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
}
}