-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.93 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.93 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
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
{
"name": "node-firebase",
"version": "1.0.0",
"description": "Node Firebase",
"main": "server/index.js",
"scripts": {
"clean": "rimraf build",
"build:client": "cross-env NODE_ENV=production webpack --mode=production --config webpack/webpack.prod.js --color --progress",
"build:server": "cross-env NODE_ENV=production babel -d ./build/server server",
"build": "npm run clean && npm run build:client && npm run build:server",
"start:server": "cross-env NODE_ENV=development pm2 start ecosystem.config.js",
"start:client": "cross-env NODE_ENV=development webpack-dev-server --mode=development --config webpack/webpack.dev.js",
"dev": "concurrently \"npm run start:client\" \"npm run start:server\"",
"start": "npm run kill && cross-env NODE_ENV=production node index.js",
"lint": "eslint '**/*.{js,jsx}' --ignore-path .eslintignore",
"lint:fix": "eslint '**/*.{js,jsx}' --fix --ignore-path .eslintignore",
"pm2:stop": "pm2 stop node-firebase",
"pm2:list": "pm2 list",
"pm2:logs": "pm2 logs",
"pm2:delete": "pm2 delete node-firebase",
"kill": "kill $(lsof -t -i:3000) | exit 0",
"users:delete": "babel-node server/scripts/users.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohamedsamara/node-firebase.git"
},
"keywords": [
"node",
"express",
"react",
"shards react",
"firebase",
"google cloud",
"app engine",
"webpack",
"workbox",
"pm2"
],
"author": "Mohamed Samara (https://github.com/mohamedsamara)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohamedsamara/node-firebase/issues"
},
"homepage": "https://github.com/mohamedsamara/node-firebase#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.12.5",
"autoprefixer": "^9.8.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"copy-webpack-plugin": "^5.0.5",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"dotenv-webpack": "^1.8.0",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^3.6.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-pwa-manifest": "^4.2.0",
"workbox-webpack-plugin": "^6.0.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@reach/router": "^1.3.4",
"axios": "^0.21.1",
"bootstrap": "^4.5.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^8.2.1",
"firebase-admin": "^9.4.2",
"formik": "^2.1.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-transition-group": "^4.4.1",
"shards-react": "^1.0.3",
"yup": "^0.29.1"
}
}