-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"scripts": {
"start": "node ./bin/www",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --timeout 5000",
"test:all": "npm run test -- ./test --recursive",
"watch:test:all": "nodemon --watch ./ --recursive --exec npm run test:all",
"watch:test": "nodemon --watch ./ --recursive --exec npm run test"
},
"dependencies": {
"babel-preset-node5": "^11.0.1",
"babel-register": "^6.7.2",
"body-parser": "^1.15.0",
"comma-split": "^1.0.0",
"config": "^1.19.0",
"express": "^4.13.4",
"moment": "^2.12.0",
"mysql": "^2.10.2",
"node-schedule": "^1.1.0",
"pify": "^2.3.0",
"sequelize": "^3.20.0",
"sequelize-connect": "^1.2.1",
"twit": "^2.2.4",
"youtube-api": "^1.4.0",
"youtube-url": "^0.2.1"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.10.2",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"flow-bin": "^0.26.0",
"mocha": "^2.4.5",
"node-mocks-http": "^1.5.2",
"nodemon": "^1.9.1",
"proxyquire": "^1.7.9",
"sinon": "^1.17.3",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.0.0"
}
}