-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "soundblogs-api",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "node ./bin/run",
"watch": "nodemon -w ./src ./bin/run -e js,json",
"watch-secure": "nodemon -w ./src ./bin/runSecureEnvs -e js,json",
"lint": "eslint ./src --fix",
"ava": "ava ./test/**/test-*.js",
"test": "npm run ava"
},
"author": "Dmitri Voronianski <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.5.0"
},
"dependencies": {
"aws-sdk": "^2.216.1",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"c0nfig": "^0.2.2",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"fortune": "^5.4.2",
"fortune-http": "^1.2.8",
"fortune-json-api": "^2.1.3",
"fortune-mongodb": "^1.1.6",
"is-my-schema-valid": "^1.0.3",
"json-api-serializer": "^1.12.0",
"lodash": "^4.17.5",
"morgan": "^1.9.0",
"parse-data-uri": "^0.2.0",
"speakingurl": "^14.0.1",
"spotify-web-api-node": "^3.0.0",
"superagent": "^3.8.2",
"superagent-defaults": "^0.1.14",
"uuid": "^3.2.1",
"validator": "^9.4.1"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^4.19.1",
"nodemon": "^1.17.5",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2"
}
}