-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.72 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": "sbotify",
"version": "1.0.0",
"description": "A bot that eases the share of music within messaging platforms.",
"main": "build/server.js",
"scripts": {
"start": "node build/server.js",
"test": "jest",
"build": "babel src/ -d build/",
"clean": "rm -rf ./build",
"build-watch": "babel src/ --watch -d build/",
"watch": "nodemon ./build/server.js",
"lint": "eslint . --ext .js --cache",
"migrate": "node_modules/db-migrate/bin/db-migrate",
"migrate-dev": "node_modules/db-migrate/bin/db-migrate --env dev up",
"migrate-prod": "node_modules/db-migrate/bin/db-migrate --env prod up"
},
"author": "Alejandro Ramirez <alex.ramirez@wizeline.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.3",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"spotify-web-api-node": "^2.4.0",
"sqlite": "^2.8.0",
"winston": "^2.3.1"
},
"repository": "git@github.com:a-rmz/sbotify.git",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"db-migrate": "^0.10.0-beta.20",
"db-migrate-sqlite3": "^0.2.1",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-fbjs": "^1.1.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-react": "^7.0.0",
"jest": "^20.0.3"
},
"jest": {
"verbose": false,
"notify": true,
"collectCoverage": true,
"coverageDirectory": "./coverage",
"testPathIgnorePatterns": [
"node_modules/",
"build/",
"__tests__/setupTests.js"
],
"setupTestFrameworkScriptFile": "./__tests__/setupTests.js"
}
}