This repository has been archived by the owner on Dec 28, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
90 lines (90 loc) · 2.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "nusmods-api",
"description": "NUSMods API",
"version": "0.0.1",
"homepage": "http://api.nusmods.com",
"author": {
"name": "NUSModifications",
"email": "[email protected]"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server --exec babel-node --watch server | bunyan -o short --color",
"scrape": "cross-env NODE_ENV=production gulp --gulpfile gulpfile.compiled.js | bunyan -o short --color",
"scrape:dev": "cross-env BABEL_ENV=development gulp local | bunyan -l debug -o short --color",
"build:scraper": "cross-env BABEL_ENV=development webpack --config webpack.config.babel.js",
"test": "jest --config jest.config.js --coverage",
"test:watch": "jest --config jest.config.js --watch",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "eslint . --ignore-path .gitignore --fix"
},
"repository": {
"type": "git",
"url": "git://github.com/nusmodifications/nusmods-api.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nusmodifications/nusmods-api/blob/master/LICENSE-MIT"
}
],
"private": true,
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "^6.16.0",
"bluebird": "^3.4.7",
"boom": "^5.1.0",
"bunyan": "^1.8.5",
"cheerio": "^0.22.0",
"chevrotain": "^0.32.1",
"cross-env": "^5.0.1",
"diff": "^3.3.0",
"dotenv": "^4.0.0",
"fs-extra": "^4.0.0",
"got": "^6.6.3",
"graphql": "^0.9.4",
"graphql-server-koa": "^0.7.2",
"graphql-tools": "^0.11.0",
"gulp": "gulpjs/gulp.git#4.0",
"gulp-cli": "^1.2.2",
"is-binary-path": "^2.0.0",
"knex": "^0.13.0",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-bunyan-logger": "^2.0.0",
"koa-compose": "^4.0.0",
"koa-router": "^7.1.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"nusmoderator": "^2.0.0",
"parse5": "^3.0.1",
"pdfjs-dist": "^1.8.552",
"ramda": "^0.24.1",
"romanify": "^1.0.0",
"sanitize-filename": "^1.6.1",
"sqlite3": "^3.1.9",
"underscore.string": "^3.3.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-bluebird": "^1.0.1",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babili-webpack-plugin": "^0.1.2",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-import-resolver-node": "^0.3.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4",
"mock-fs": "^4.2.0",
"nock": "^9.0.14",
"nodemon": "^1.11.0",
"webpack": "^3.3.0",
"webpack-node-externals": "^1.6.0"
}
}