-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.47 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
{
"name": "node-postgres-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "Stephen Fraser <[email protected]>",
"scripts": {
"start": "pm2 install typescript && pm2 start ecosystem.config.js --watch --only server-dev --no-daemon",
"build": "NODE_ENV=production tsc -p .",
"generate-migration": "node migrate.js create",
"generate-example-schema": "typescript-json-schema ./src/schemas/Example.ts Example -o ./schemas/example.json --required --noExtraProps"
},
"dependencies": {
"@koa/router": "^8.0.6",
"@slonik/migrator": "^0.2.0",
"@slonik/typegen": "^0.3.1",
"ajv": "^6.12.0",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"slonik": "^22.4.3",
"uuid": "^7.0.1"
},
"devDependencies": {
"@fesk/eslint-config-standard": "1.4.0-pr.b6dc2fa3",
"@types/koa": "^2.11.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa__router": "^8.0.2",
"@types/slonik": "^22.1.1",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react-hooks": "^2.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"pm2": "^4.2.3",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"typescript-json-schema": "^0.42.0"
}
}