-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "easydarwin",
"version": "8.0.0",
"description": "EasyDarwin NodeJS Server",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development NODE_PATH=. nodemon app.js",
"start": "cross-env NODE_ENV=production NODE_PATH=. node app.js",
"pm2": "cross-env NODE_ENV=production NODE_PATH=. pm2 start pm2.config.js"
},
"keywords": [
"RTSP",
"EasyDarwin",
"NodeJS"
],
"author": "penggy",
"license": "ISC",
"dependencies": {
"@penggy/express-yields": "1.1.2",
"@penggy/internal-ip": "3.0.1",
"body-parser": "1.18.2",
"cookie-parser": "1.4.3",
"cross-env": "5.1.4",
"easy-session-file-store": "1.2.1",
"escape-string-regexp": "1.0.5",
"express": "4.16.3",
"express-session": "1.15.6",
"fs-extra": "5.0.0",
"get-port": "3.2.0",
"lowdb": "1.0.0",
"moment": "2.21.0",
"pm2": "2.10.2",
"sdp-transform": "2.4.0",
"shortid": "2.2.8",
"urlsafe-base64": "1.0.0",
"ws": "5.1.0"
},
"nodemonConfig": {
"ignore": [
"www",
"web_src"
]
},
"repository": {
"type": "git",
"url": "https://github.com/EasyDarwin/EasyDarwin.git"
},
"pack": {
"pattern": "{routes/**,utils/**,www/**,*.js,*.bat,*.sh,*.md,node_modules/**}",
"options": {
"dot": true,
"ignore": [
"node_modules/@types{,/**}",
"node_modules/babel*{,/**}",
"node_modules/webpack*{,/**}",
"node_modules/**/{*.md,license,LICENSE}",
"*.log"
]
}
}
}