-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.06 KB
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
{
"name": "jhdb-cms",
"description": "Content management system for the Jazz History Database",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"author": "Jazz History Database",
"repository": {
"type": "git",
"url": "https://github.com/jazzhistorydatabase/jhdb-cms.git"
},
"engines": {
"node": "12.x.x"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.2",
"@tinymce/tinymce-react": "^3.8.4",
"@types/react": "^17.0.0",
"axios": "^0.19.2",
"backpack-core": "^0.8.4",
"colors": "^1.4.0",
"dropbox": "^4.0.30",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"firebase": "^8.2.1",
"firebase-admin": "^9.4.2",
"isomorphic-fetch": "^3.0.0",
"js-file-download": "^0.4.12",
"load-script": "^1.0.0",
"lodash": "^4.17.20",
"lodash.isequal": "^4.5.0",
"notistack": "^0.9.17",
"parcel": "^1.12.4",
"re-base": "^4.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-firebase-hooks": "^2.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"simple-oauth2": "^3.4.0",
"typeface-roboto": "0.0.75"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.3.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.6",
"parcel-bundler": "^1.12.4"
},
"proxy": "http://localhost:8080",
"scripts": {
"dev": "cross-env BROWSER=none DEV=true npx backpack dev --expose_gc",
"local": "cross-env BROWSER=none DEV=true LOCAL=true FIRESTORE_EMULATOR_HOST=localhost:8000 FIREBASE_AUTH_EMULATOR_HOST=localhost:9099 npx backpack dev --expose_gc",
"build": "backpack build && parcel build client/index.html --public-url ./",
"start": "node --expose_gc build/main.js",
"devdeploy": "gcloud app deploy --version dev --no-promote"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}