forked from Universalis-FFXIV/Universalis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "universalis",
"version": "1.0.0",
"description": "A crowdsourced market board website for FFXIV.",
"main": "build/universalis.js",
"scripts": {
"build": "tsc --build",
"lint": "tslint ./src/**/*.ts",
"start": "node .",
"start-dev": "npm run lint && npm run build && npm start",
"test": "mocha --require ts-node/register \"test/**/*.{js,ts,tsx}\"",
"unic": "node build/cli/unic.js",
"update": "git pull && npm install && npm run build"
},
"author": "karashiiro",
"license": "MIT",
"dependencies": {
"@koa/cors": "^3.0.0",
"@koa/router": "^8.0.1",
"archiver": "^3.1.1",
"chalk": "^2.4.2",
"cron": "^1.7.1",
"csv-parse": "^4.4.6",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-static": "^5.0.0",
"lodash.compact": "^3.0.1",
"lodash.difference": "^4.5.0",
"mongodb": "^3.3.2",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sha.js": "^2.4.11",
"typescript": "^3.5.3",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.1.0"
},
"devDependencies": {
"@types/archiver": "^3.0.0",
"@types/cron": "^1.7.1",
"@types/koa": "^2.0.49",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-static": "^4.0.1",
"@types/koa__cors": "^2.2.3",
"@types/koa__router": "^8.0.0",
"@types/lodash.compact": "^3.0.6",
"@types/lodash.difference": "^4.5.6",
"@types/lodash.isequal": "^4.5.5",
"@types/mongodb": "^3.3.1",
"@types/request-promise": "^4.1.44",
"@types/sha.js": "^2.4.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"ts-node": "8.4.1",
"mocha": "^6.2.0",
"@types/mocha": "5.2.7",
"should": "^13.2.3",
"tslint": "^5.18.0"
}
}