-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "steemgigs_backend",
"version": "1.0.0",
"description": "Steemgigs API Server",
"main": "src/index.js",
"scripts": {
"start": "nodemon src/index.js",
"startw": "nodemon src/index.js --exec 'npm run lint && node'",
"startW": "nodemon src/index.js --exec 'npm run lint && npm run startRP'",
"startP": "pm2 start src/index.js -i max --name \"SteemGigsServer\"",
"startRP": "pm2 stop all && pm2 delete all && pm2 start -f src/index.js -i max --name \"SteemGigs Server\"",
"lint": "./node_modules/.bin/eslint **/*.js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "8.11.1"
},
"keywords": [
"Artists",
"music",
"nodeJS",
"API",
"express"
],
"author": "Ajala Abdulsamii <[email protected]>",
"license": "ISC",
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
},
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"cloudinary": "^1.10.0",
"connect-multiparty": "^2.1.0",
"connect-redis": "^3.3.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"helmet": "^3.9.0",
"joi": "^13.0.2",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.11",
"mongoose": "^4.13.7",
"mongoose-multi": "0.0.18",
"morgan": "^1.9.0",
"nodemon": "^1.18.10",
"redis": "^2.8.0",
"sc2-sdk": "^1.0.2",
"sscjs": "0.0.7",
"steem": "^0.7.1",
"steemconnect": "^2.0.1"
}
}