-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "troubadour-server",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"test": "echo 'Tests coming soon!'",
"eslint": "eslint src",
"eslint-fix": "eslint --fix src",
"clean": "rimraf out/",
"build-docs": "apidoc -i src/ -o out/docs/ -f \"controllers/.*\\.js\"",
"pre-build": "npm run eslint-fix && npm run eslint && npm run clean",
"build": "npm run pre-build && npm run build-docs && babel src --out-dir out/",
"start": "NODE_ENV='production' node out/main.js",
"start-dev": "NODE_ENV='development' babel-watch src/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apidoc": "^0.17.5",
"babel-polyfill": "^6.23.0",
"body-parser": "^1.17.0",
"cache-manager": "^2.4.0",
"cache-manager-redis": "^0.4.0",
"dotenv": "^4.0.0",
"errorhandler": "^1.5.0",
"es6-error": "^4.0.2",
"express": "^4.15.0",
"express-async-errors": "^2.0.0",
"levenshtein": "^1.0.5",
"morgan": "^1.8.1",
"pg": "^6.1.4",
"pg-hstore": "^2.3.2",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"sequelize": "^3.30.2",
"sequelize-cli": "^2.5.1",
"spotify-web-api-node": "^2.3.6",
"node-datetime": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-preset-env": "^1.2.0",
"babel-watch": "^2.0.6",
"eslint": "^3.17.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-async-await": "0.0.0"
}
}