-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.85 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
{
"name": "repsp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@date-io/moment": "^1.3.11",
"@material-ui/core": "^4.5.1",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.30",
"@material-ui/pickers": "^3.2.7",
"array-foreach-async": "^1.0.1",
"axios": "^0.19.0",
"env-var": "^5.1.0",
"filepond": "^4.7.1",
"filepond-plugin-image-exif-orientation": "^1.0.6",
"filepond-plugin-image-preview": "^4.4.0",
"firebase": "^6.4.2",
"hammerjs": "^2.0.8",
"markdown-to-jsx": "^6.10.3",
"mdi-material-ui": "^6.7.0",
"moment": "^2.24.0",
"notistack": "^0.9.4",
"raw-loader": "^3.1.0",
"react": "^16.8.6",
"react-cookie": "^4.0.1",
"react-dom": "^16.8.6",
"react-filepond": "^7.0.1",
"react-firebase-hooks": "^2.1.0",
"react-gravatar": "^2.6.3",
"react-inspector": "^4.0.0",
"react-router-dom": "^5.1.0",
"react-scripts": "3.1.1",
"react-sizeme": "^2.6.10",
"react-spring": "^8.0.27",
"react-swipeable-views": "^0.13.3",
"shortid": "^2.2.15",
"slugify": "^1.3.5",
"styled-components": "^4.3.2",
"svg-pan-zoom": "github:ariutta/svg-pan-zoom",
"wikijs": "^6.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"spec": "jest spec functions --watch",
"update-firestore-indexes-from-live": "firebase firestore:indexes > firestore.indexes.json",
"deploy": "npm run build && firebase deploy",
"deploy-hosting": "npm run build && firebase deploy --only hosting",
"deploy-functions": "firebase deploy --only functions",
"deploy-firestore-rules": "firebase deploy --only firestore:rules",
"test-firestore-rules": "firebase emulators:exec --only firestore 'jest --watch firestore.rules firestore.rules.spec.js'",
"copy-functions-config-for-local-emulator": "firebase functions:config:get > functions/.runtimeconfig.json",
"start-with-functions-emulator": "REACT_APP_FIREBASE_FUNCTIONS_EMULATOR=1 GOOGLE_APPLICATION_CREDENTIALS=`pwd`/serviceAccountKey.json firebase emulators:exec --only functions 'npm start'",
"serve-with-live-credentials": "GOOGLE_APPLICATION_CREDENTIALS=`pwd`/serviceAccountKey.json firebase serve",
"functions-shell": "GOOGLE_APPLICATION_CREDENTIALS=`pwd`/serviceAccountKey.json firebase functions:shell"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@firebase/testing": "^0.12.0",
"eslint": "^6.6.0",
"eslint-plugin-react-hooks": "^2.2.0",
"eslint-utils": ">=1.4.1",
"node-wget-promise": "^0.1.6"
}
}