-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.09 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
{
"name": "raah-web",
"version": "0.0.1",
"description": "Project generated by generator-react-firebase",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "react-scripts build",
"deploy": "react-scripts build && firebase deploy --only hosting",
"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)\" npm run start",
"functions:start": "yarn --cwd functions start",
"functions:watch": "yarn --cwd functions watch",
"functions:build": "yarn --cwd functions build",
"functions:deploy": "yarn --cwd functions deploy",
"emulators": "firebase emulators:start --only firestore,database,pubsub",
"emulators:hosting": "firebase emulators:start --only firestore,database,hosting",
"emulators:all": "firebase emulators:start",
"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/xpsdeset/raah-web.git"
},
"engines": {
"node": ">=12"
},
"author": "xpsdeset (https://github.com/xpsdeset)",
"license": "MIT",
"dependencies": {
"bootstrap": "^4.5.0",
"firebase": "^8.4.2",
"history": "^4.10.1",
"lodash": "^4.17.15",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-bootstrap": "^1.2.1",
"react-dom": "^16.13.1",
"react-firebaseui": "^4.1.0",
"react-hook-form": "^5.7.2",
"react-intl": "^5.4.6",
"react-redux": "^7.1.1",
"react-redux-firebase": "^3.10.0",
"react-router-dom": "^5.1.2",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-auth-wrapper": "^2.1.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-standard": "^4.0.1",
"firebase-ci": "^0.13.0",
"firebase-tools": "^8.4.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"react-scripts": "^3.4.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"
]
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"config": {
"port": 3000
}
}