-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "node-seed",
"version": "1.0.0",
"description": "",
"main": "scripts/main.js",
"engines": {
"node": ">= 5.2.0"
},
"engine-strict": true,
"scripts": {
"clean": "rm -rf dist",
"check:node": "check-node-version --node \">=7.6.0 <8\"",
"ci": "yarn check && yarn lint:js",
"build": "yarn run clean && mkdir dist && babel scripts --out-dir dist --source-maps",
"lint:js": "eslint ./scripts --ext=js",
"postinstall": "yarn check:node",
"start": "babel-node scripts/bot.js",
"start:debug": "yarn start -- --inspect",
"start:watch": "nodemon -w ./scripts --exec yarn start",
"start:built": "node dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"scraper": "babel-node scripts/scraperWatch.js"
},
"license": "ISC",
"dependencies": {
"firebase-admin": "^5.0.0",
"http": "^0.0.0",
"later": "^1.2.0",
"lodash": "^4.2.1",
"messenger-bot": "^2.4.0",
"moment": "^2.18.1",
"query-string": "^4.3.4",
"scraperjs": "^1.2.0",
"secure-random-string": "^1.0.0",
"spotify-web-api-node": "^2.4.0",
"superagent": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"check-node-version": "^1.1.2",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "2.2.0",
"forever": "^0.15.1",
"nodemon": "^1.8.1"
}
}