forked from NangoHQ/nango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.86 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "pizzly",
"version": "0.2.0",
"description": "",
"author": "engineering@bearer.sh",
"license": "ISC",
"main": "dist/src/index.js",
"types": "src/types.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "rimraf dist/ && tsc -p tsconfig.json",
"start": "node dist/src",
"dev": "concurrently 'yarn dev:build' 'yarn dev:serve' ",
"dev:build": "yarn build --watch",
"dev:serve": "nodemon --delay 1 --watch dist/src node dist/src",
"db:setup": "npm run db:create && npm run db:migrate",
"db:create": "node dist/src/lib/database/config/create",
"db:migrate": "knex --cwd dist/src/lib/database/config migrate:latest",
"test": "jest"
},
"engines": {
"node": ">= 10"
},
"dependencies": {
"@bearer/node-agent": "^3.2.1",
"@hapi/joi": "^15.1.1",
"@types/sleep": "^0.0.7",
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"cls-hooked": "^4.2.2",
"compose-middleware": "^5.0.1",
"connect-session-knex": "^1.6.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"ejs": "^3.0.2",
"express": "^4.16.3",
"express-session": "^1.15.6",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.1",
"lodash.at": "^4.6.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"merge": "^1.2.1",
"oauth": "^0.9.15",
"passport": "^0.4.0",
"passport-oauth1": "^1.1.0",
"pg": "^8.0.3",
"simple-oauth2": "^3.0.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/cls-hooked": "^4.3.0",
"@types/cookie-parser": "^1.4.1",
"@types/debug": "^0.0.31",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.11",
"@types/jest": "^23.3.10",
"@types/jsonwebtoken": "^8.3.4",
"@types/lodash.at": "^4.6.6",
"@types/lodash.omit": "^4.5.6",
"@types/lodash.pick": "^4.4.6",
"@types/nock": "^9.3.0",
"@types/node": "^10.3.6",
"@types/passport-oauth2": "^1.4.5",
"@types/simple-oauth2": "^2.2.1",
"@types/supertest": "^2.0.5",
"@types/wreck": "^14.0.0",
"babel-loader": "^8.0.5",
"commitlint": "^7.2.1",
"concurrently": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"file-loader": "^3.0.1",
"html-loader": "^1.1.0",
"jest": "^23.6.0",
"jest-localstorage-mock": "^2.2.0",
"lint-staged": "^8.1.0",
"nock": "^10.0.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.2",
"prettier": "^1.15.3",
"rimraf": "^3.0.2",
"script-ext-html-webpack-plugin": "^2.0.1",
"string-replace-webpack-plugin": "^0.1.3",
"supertest": "^3.3.0",
"timekeeper": "^2.2.0",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.3",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
}
}