-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
128 lines (128 loc) · 5.19 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "doocrate",
"version": "0.6.1",
"description": "Teal based task webapp",
"homepage": "https://doocrate.firebaseapp.com",
"repository": {
"type": "git",
"url": "https://github.com/metaburn/doocrate.git"
},
"author": {
"name": "Metaburn",
"email": "[email protected]"
},
"license": "MIT",
"private": true,
"engines": {
"node": ">=8.1.4"
},
"scripts": {
"eject": "react-scripts eject",
"prebuild": "npm run build:clean",
"build": "npm run prebuild && run-s copy-production build:css build:js",
"build:clean": "rimraf \"build/!(.git*|Procfile)**\"",
"build-staging": "npm run prebuild && run-s copy-staging build:css build:js",
"build:css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"build:js": "cross-env NODE_PATH=. react-scripts build --mode production",
"deploy:staging": "run-s build-staging copy-locals deploy-firebase-staging",
"deploy-firebase-staging": "firebase use staging && firebase deploy",
"deploy:staging-only-frontend": "run-s build-staging copy-locals deploy-firebase-staging-only-frontend",
"deploy:staging-only-server": "run-s build-staging copy-locals deploy-firebase-staging-only-server",
"deploy-firebase-staging-only-server": "firebase use staging && firebase deploy --only functions",
"deploy-firebase-staging-only-frontend": "firebase use staging && firebase deploy --only hosting",
"deploy:production": "run-s build copy-locals deploy-firebase-production",
"deploy-firebase-production": "firebase use default && firebase deploy",
"deploy:production-only-server": "run-s build copy-locals deploy-firebase-production-only-server",
"deploy:production-only-frontend": "run-s build copy-locals deploy-firebase-production-only-frontend",
"deploy-firebase-production-only-server": "firebase use default && firebase deploy --only functions",
"deploy-firebase-production-only-frontend": "firebase use default && firebase deploy --only hosting",
"start": "run-p start:css start:js",
"start:css": "npm run build:css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start:js": "cross-env NODE_PATH=. react-scripts start",
"test": "cross-env CI=true NODE_PATH=. react-scripts test --env=jsdom",
"test:debug": "cross-env CI=true NODE_PATH=. react-scripts --inspect-brk=5858 test --env=jsdom --runInBand --no-cache",
"test:ci": "cross-env CI=true NODE_PATH=. react-scripts test --env=jsdom",
"test:firestore-rules": "firebase emulators:exec --only firestore mocha",
"test:setup-firestore": "firebase setup:emulators:firestore",
"test:ci:firestore-rules": "firebase emulators:exec --only firestore mocha",
"copy-staging": "cp -R src/firebase/config.staging.js src/firebase/config.js",
"copy-production": "cp -R src/firebase/config.production.js src/firebase/config.js",
"copy-locals": "cp -R public/locales build/locales"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "12.4.0",
"@ckeditor/ckeditor5-react": "1.1.3",
"@sentry/browser": "5.7.1",
"classnames": "2.2.6",
"firebase": "7.2.0",
"history": "4.7.2",
"i18next": "10.2.1",
"i18next-browser-languagedetector": "2.1.0",
"i18next-xhr-backend": "1.5.0",
"immutable": "4.0.0-rc.12",
"lodash": "4.17.15",
"moment-timezone": "0.5.13",
"prop-types": "15.6.2",
"react": "16.3.2",
"react-aria-offcanvas": "^1.3.6",
"react-autosuggest": "9.4.2",
"react-burger-menu": "2.6.11",
"react-collapsible": "2.6.0",
"react-csv": "1.0.18",
"react-dom": "16.3.3",
"react-i18next": "7.0.0",
"react-image": "1.0.1",
"react-infinite-scroller": "1.1.1",
"react-inputs-validation": "1.4.2",
"react-linkify": "0.2.1",
"react-moment": "0.6.5",
"react-portal-tooltip": "1.3.0",
"react-redux": "5.1.0",
"react-responsive-modal": "3.2.0",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"react-router-redux": "5.0.0-alpha.9",
"react-scripts": "3.1.2",
"react-select": "2.1.1",
"react-simple-popover": "^0.2.4",
"react-slideshow-image": "1.3.0",
"react-tagsinput": "3.18.0",
"react-textarea-autosize": "7.1.0",
"react-toastify": "2.2.0",
"react-tooltip": "3.3.1",
"react-transition-group": "1.2.1",
"reactour": "1.7.1",
"recompose": "0.30.0",
"redux": "^3.7.1",
"redux-logger": "^3.0.6",
"redux-thunk": "2.3.0",
"reselect": "^3.0.1",
"sentry": "0.1.2",
"styled-components": "^4.0.0",
"url-search-params-polyfill": "7.0.0"
},
"devDependencies": {
"@babel/runtime": "7.6.3",
"@firebase/testing": "0.16.0",
"cross-env": "5.2.0",
"enzyme": "^2.9.1",
"filesystem": "1.0.1",
"firebase-tools": "7.3.2",
"husky": "^3.1.0",
"minx": "github:r-park/minx",
"mocha": "6.2.2",
"node-sass-chokidar": "1.3.5",
"npm-run-all": "4.1.3",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"react-test-renderer": "16",
"redux-mock-store": "^1.5.3",
"sinon": "2.4.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [">0.2%", "not dead", "not ie <= 11", "not op_mini all"]
}