forked from zurichat/zc_main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "zc_main",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:zurichat/zc_main.git",
"license": "MIT",
"scripts": {
"start": "npm run run-start",
"build": "npm run frontend:build",
"format": "prettier -w .",
"lint": "prettier -c .",
"deploy": "gh-pages -d build",
"dev": "concurrently --kill-others-on-fail \"npm run run-dev\" \"npm run frontend:dev\"",
"run-start": "cross-env NODE_ENV=production node server.js",
"run-dev": "cross-env NODE_ENV=development nodemon server.js",
"frontend:build": "npm run build --prefix zc_frontend",
"frontend:dev": "cross-env PORT=5000 npm run start --prefix zc_frontend",
"postinstall": "cd zc_frontend && yarpm-yarn install"
},
"dependencies": {
"axios": "^0.21.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"dotenv": "^10.0.0",
"emoji-picker-react": "^3.4.8",
"express": "^4.17.1",
"express-limiter": "^1.6.1",
"express-device": "^0.4.2",
"express-useragent": "^1.0.15",
"geoip-lite": "^1.4.2",
"gh-pages": "^3.2.3",
"helmet": "^4.6.0",
"nodemailer": "^6.6.3",
"yarn": "^1.22.11"
},
"devDependencies": {
"autoprefixer": "^10.3.3",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"nodemon": "^2.0.12",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.9",
"yarpm": "^1.1.1"
}
}