-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.03 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.03 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
58
59
60
61
62
{
"name": "my_music",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text --reporter=text-summary cross-env MYMUSIC_NODE_ENV=test mocha -c -r esm test/**/*.test.js --timeout 12000 --exit",
"pretest": "cross-env MYMUSIC_NODE_ENV=test npm run migrate:reset && cross-env MYMUSIC_NODE_ENV=test npm run migrate up && cross-env MYMUSIC_NODE_ENV=test npm run migrate reset:seeds && cross-env MYMUSIC_NODE_ENV=test npm run migrate up:seeds",
"lint": "eslint --ext .js ./",
"dev": "nodemon -r esm app",
"start": "node -r esm app",
"migrate": "db-migrate --migrations-dir ./app/db/migrations",
"migrate:up": "npm run migrate up",
"migrate:down": "npm run migrate down",
"migrate:reset": "npm run migrate reset",
"migrate:create": "npm run migrate create",
"seed:create": "npm run migrate create:seeds",
"seed:up": "npm run migrate up:seeds",
"seed:down": "npm run migrate down:seeds",
"seed:reset": "npm run migrate reset:seeds"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"app-root-path": "^3.0.0",
"aws-sdk": "^2.904.0",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"db-migrate-pg": "^1.2.2",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"faker": "^5.5.3",
"helmet": "^4.6.0",
"joi": "^17.4.0",
"joi-phone-number": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"pg-promise": "^10.10.2",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-3-papertrail": "^1.0.7",
"winston-papertrail": "^1.0.5"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"db-migrate": "^0.11.12",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.4.0",
"nyc": "^15.1.0"
}
}