-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "stat-scraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build&&npm run build:watch",
"build:watch":
"concurrently \"nodemon --inspect --delay 3 dist/server.js --watch dist\" \"babel --watch src -d dist\"",
"test": "jest",
"clean": "rimraf dist",
"build": "npm run clean&&babel src -d dist",
"babel-node": "babel-node ./src/server.js",
"flow": "flow",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cheerio": "^0.20.0",
"koa": "^1.2.0",
"koa-route": "^2.4.2",
"lodash.isobject": "^3.0.2",
"mssql": "^3.3.0",
"superagent": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"concurrently": "^3.4.0",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.3.1",
"flow-bin": "^0.46.0",
"jest": "^21.2.1",
"nodemon": "^1.9.2",
"prettier": "^1.9.1",
"rimraf": "^2.6.1"
}
}