-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
131 lines (131 loc) · 4.34 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
129
130
131
{
"name": "GiveMe.lk",
"version": "0.0.1",
"description": "Project generated by generator-react-firebase",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"start:dist": "npm run build && firebase emulators:start --only hosting",
"start:emulate": "cross-env REACT_APP_FIREBASE_DATABASE_EMULATOR_HOST=\"localhost:$(cat firebase.json | jq .emulators.database.port)\" REACT_APP_FIRESTORE_EMULATOR_HOST=\"localhost:$(cat firebase.json | jq .emulators.firestore.port)\" yarn start",
"test": "react-scripts test",
"build:config": "firebase-ci createConfig",
"build:testConfig": "cypress-firebase createTestEnvFile",
"deploy": "firebase-ci deploy -s",
"functions:start": "npm run start --prefix functions",
"functions:serve": "npm run serve --prefix functions",
"functions:watch": "npm run watch --prefix functions",
"functions:build": "npm run build --prefix functions",
"functions:test": "npm run test --prefix functions",
"test:ui": "npm run build:testConfig && cypress run",
"test:ui:open": "npm run build:testConfig && cypress open",
"test:ui:emulate": "cross-env FIREBASE_DATABASE_EMULATOR_HOST=\"localhost:$(cat firebase.json | jq .emulators.database.port)\" FIRESTORE_EMULATOR_HOST=\"localhost:$(cat firebase.json | jq .emulators.firestore.port)\" yarn test:open",
"emulators": "firebase emulators:start --only firestore,database",
"emulators:all": "firebase emulators:start --only firestore,database,hosting",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --single-quote --no-semi --trailing-comma none --write \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeLanka/e-Pola-Providers.git"
},
"engines": {
"node": ">=10.15.0"
},
"author": "agentmilindu (https://github.com/agentmilindu)",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@sentry/browser": "^5.15.0",
"firebase": "^7.12.0",
"google-map-react": "^1.1.7",
"history": "^4.10.1",
"i18next": "^19.4.1",
"i18next-browser-languagedetector": "^4.0.2",
"lodash": "^4.17.15",
"material-ui-image": "^3.2.3",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-google-button": "^0.7.0",
"react-hook-form": "^5.1.3",
"react-i18next": "^11.3.4",
"react-moment": "^0.9.7",
"react-redux": "^7.1.1",
"react-redux-firebase": "^3.1.2",
"react-router-dom": "^5.1.2",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-auth-wrapper": "^2.1.0",
"redux-firestore": "^0.11.0",
"redux-thunk": "^2.3.0",
"supercluster": "^7.0.0",
"swr": "^0.2.0",
"use-position": "^0.0.6",
"use-supercluster": "^0.2.6"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"cypress": "^4.2.0",
"cypress-firebase": "1.0.0-beta.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^22.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-standard": "^4.0.1",
"firebase-admin": "^8.10.0",
"firebase-ci": "^0.12.2",
"firebase-tools": "^7.15.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^2.0.0",
"react-scripts": "^3.4.0",
"react-test-renderer": "^16.13.1"
},
"eslintConfig": {
"extends": "./eslintrc.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"config": {
"port": 3000
}
}