-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.42 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
{
"name": "claws",
"version": "0.0.1",
"scripts": {
"start": "pm2-runtime ecosystem.config.js",
"pm2-docker-dev": "pm2-runtime ecosystem.config.js --env development",
"pm2-local-prod": "pm2 start ./ecosystem.config.js",
"pm2-local-dev": "pm2 start ./ecosystem.config.js -env development",
"stop": "pm2 stop ./ecosystem.config.js",
"reload": "pm2 reload ./ecosystem.config.js",
"status": "pm2 list",
"dev": "cross-env NODE_ENV=development nodemon --inspect server.js"
},
"dependencies": {
"app-root-path": "^2.1.0",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.7.3",
"crypto-js": "^3.1.9-1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-sse": "^0.5.0",
"jsonwebtoken": "^8.3.0",
"m3u8-stream-list": "^1.1.0",
"memorystore": "^1.6.0",
"morgan": "^1.9.1",
"multer": "^1.3.1",
"random-useragent": "^0.3.1",
"rate-limiter-flexible": "^0.19.4",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"winston": "^3.1.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"pm2": "^3.2.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}