-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.9 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
{
"name": "untitled",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start --port 3050",
"start:sandbox": "next start --port 3060",
"pm2:start": "pm2 start npm --name 'untitiled' -- run start",
"pm2:restart": "if pm2 show untitiled ; then pm2 restart untitiled ; else echo 'No pm2 instance for untitiled' ; fi",
"pm2:stop": "if pm2 show untitiled ; then pm2 stop untitiled ; else echo 'No pm2 instance for untitiled' ; fi",
"pm2:delete": "if pm2 show untitiled ; then pm2 delete untitiled ; else echo 'No pm2 instance for untitiled' ; fi",
"pm2:reboot": "npm ci && npm run build && npm run pm2:stop && npm run pm2:delete && npm run pm2:start",
"pm2:start:sandbox": "pm2 start npm --name 'untitiled-sandbox' -- run start:sandbox",
"pm2:restart:sandbox": "if pm2 show untitiled-sandbox ; then pm2 restart untitiled-sandbox ; else echo 'No pm2 instance for untitiled-sandbox' ; fi",
"pm2:stop:sandbox": "if pm2 show untitiled-sandbox ; then pm2 stop untitiled-sandbox ; else echo 'No pm2 instance for untitiled-sandbox' ; fi",
"pm2:delete:sandbox": "if pm2 show untitiled-sandbox ; then pm2 delete untitiled-sandbox ; else echo 'No pm2 instance for untitiled-sandbox' ; fi",
"pm2:reboot:sandbox": "npm ci && npm run build && npm run pm2:stop:sandbox && npm run pm2:delete:sandbox && npm run pm2:start:sandbox"
},
"dependencies": {
"next": "10.0.3",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/payw-org/untitled.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/payw-org/untitled/issues"
},
"homepage": "https://github.com/payw-org/untitled#readme",
"devDependencies": {
"@types/node": "^14.14.11",
"@types/react": "^17.0.0",
"typescript": "^4.1.2"
}
}