-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.42 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": "mapofmetal",
"version": "1.0.0",
"description": "MapOfMetal.com",
"main": "index.js",
"private": true,
"scripts": {
"concat_genreinfo": "node ./scripts/concat-genre-info.js",
"dev": "npm run concat_genreinfo && parcel index.html --port 51234 --hmr-port 51235",
"build": "npm run concat_genreinfo && parcel build index.html"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "./tiles",
"staticOutDir": "tiles"
},
{
"staticPath": "./static",
"staticOutDir": "static"
},
{
"staticPath": "./data",
"staticOutDir": "data"
}
]
},
"author": "Patrick Galbraith",
"license": "UNLICENSED",
"dependencies": {
"babel-polyfill": "^6.23.0",
"openseadragon": "^2.4.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^3.5.0"
},
"devDependencies": {
"@types/node": "^14.14.21",
"@types/openseadragon": "^2.4.5",
"@types/parcel-env": "0.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@types/react-transition-group": "^4.4.0",
"@types/youtube": "0.0.41",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.1",
"sass": "^1.32.5",
"typescript": "^4.1.3"
}
}