This repository was archived by the owner on Oct 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "startpim",
"version": "0.0.1",
"description": "",
"private": true,
"main": "bin/server.js",
"scripts": {
"dev": "next src -p 5004",
"build": "next build",
"start": "next start",
"configure": "./bin/configure_db.sh",
"app:dev": "nodemon bin/server.js",
"app:prod": "rm -rf src/.next && next build src && NODE_ENV=production node bin/server.js",
"app:vps": "rm -rf src/.next && next build src && NODE_ENV=production pm2 start bin/server.js"
},
"author": "GlowSquid",
"license": "ISC",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"base-64": "^0.1.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"crypto-js": "^3.1.9-1",
"express": "^4.17.1",
"isomorphic-unfetch": "^3.0.0",
"next": "^8.1.0",
"next-images": "^1.1.2",
"open-graph-scraper": "^3.6.2",
"pg": "^7.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"uuid": "^3.3.2",
"validator": "^10.11.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-react": "^1.1.7",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-react": "^7.14.2",
"nodemon": "^1.19.1",
"redux-devtools-extension": "^2.13.8"
}
}