-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.15 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
{
"name": "lpsci-election-system-server",
"version": "1.0.0",
"description": "REST API Server for LPSci Systems utilizing Typescript, TypeORM, and Koa",
"main": "src/index.ts",
"repository": "https://github.com/LPSci-Web-Development-Team/lpsci-election-system-server.git",
"author": "LPSci Web Development Team",
"license": "MIT",
"private": false,
"dependencies": {
"@hapi/joi": "latest",
"@koa/cors": "latest",
"@types/mocha": "latest",
"@types/redis": "^2.8.22",
"axios": "latest",
"date-fns": "^2.11.1",
"dotenv": "latest",
"firebase-admin": "latest",
"http-status-codes": "latest",
"koa": "latest",
"koa-body": "^4.1.3",
"koa-helmet": "latest",
"koa-logger": "latest",
"koa-router": "latest",
"pg": "latest",
"pino": "latest",
"redis": "^3.0.2",
"reflect-metadata": "latest",
"ts-mocha": "latest",
"ts-node": "latest",
"typeorm": "latest"
},
"devDependencies": {
"@types/hapi__joi": "latest",
"@types/koa": "latest",
"@types/koa-bodyparser": "latest",
"@types/koa-helmet": "latest",
"@types/koa-logger": "latest",
"@types/koa-router": "latest",
"@types/koa__cors": "latest",
"@types/node": "latest",
"@types/pino": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"apidoc": "latest",
"eslint": "latest",
"eslint-config-airbnb-base": "latest",
"eslint-import-resolver-node": "latest",
"eslint-import-resolver-typescript": "latest",
"eslint-plugin-import": "latest",
"mocha": "latest",
"nodemon": "^2.0.2",
"pino-pretty": "latest",
"typescript": "latest"
},
"scripts": {
"dev": "nodemon",
"test": "./node_modules/.bin/ts-mocha test/*.ts",
"build": "rm -rf build && tsc --sourceMap -p ./",
"start": "node build/src/index.js",
"lint": "eslint \"src/**/*.ts\"",
"migrate:generate": "yarn run typeorm:cli migration:generate -n $NAME",
"migrate": "yarn run typeorm:cli migration:run",
"migrate:revert": "yarn run typeorm:cli migration:revert",
"typeorm:cli": "ts-node ./node_modules/typeorm/cli -f ./src/ormconfig.ts"
}
}