-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.21 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
{
"name": "wdw-data",
"version": "0.5.2",
"private": true,
"description": "API for accessing WDW data.",
"main": "./modules/index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "tsc --outDir ./modules && copyfiles -u 1 './src/**/*.json' modules",
"postversion": "git push && git push --tags",
"start": "ts-node ./src/server.ts",
"service:data": "ts-node ./scripts/data.ts",
"service:schedules": "ts-node ./scripts/schedules.ts",
"service:waittimes": "ts-node ./scripts/waittimes.ts",
"test": "mocha --opts test/mocha.opts",
"version": "npm run build && git add -A modules"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/SomethingSexy/wdw-data.git"
},
"author": "Tyler Cvetan",
"bugs": {
"url": "https://github.com/SomethingSexy/wdw-data/issues"
},
"homepage": "https://github.com/SomethingSexy/wdw-data#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"cookie": "^0.3.1",
"debug": "^3.2.6",
"fs-extra": "^5.0.0",
"invariant": "^2.2.4",
"is-uuid": "^1.0.2",
"lodash": "^4.17.11",
"lodash-es": "^4.17.11",
"moment": "^2.22.2",
"moment-holiday": "^1.5.1",
"moment-timezone": "^0.5.21",
"node-fetch": "^2.2.0",
"parse-address": "^1.1.0",
"pg": "^7.5.0",
"pg-hstore": "^2.3.2",
"random-useragent": "^0.3.1",
"sequelize": "^5.0.0-beta.14",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/cheerio": "^0.22.9",
"@types/fs-extra": "^5.0.4",
"@types/invariant": "^2.2.29",
"@types/is-uuid": "^1.0.0",
"@types/lodash-es": "^4.17.1",
"@types/mocha": "^2.2.48",
"@types/moment-holiday": "^1.5.0",
"@types/sequelize": "^4.27.28",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"proxyquire": "^2.1.0",
"sequelize-test-helpers": "^1.0.5",
"sinon": "^6.3.5",
"ts-loader": "^3.5.0",
"ts-node": "^5.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"tslint-loader": "^3.6.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.3"
}
}