-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "xero-node-oauth2-app",
"version": "1.0.0",
"description": "App to demonstrate xero-node OAuth 2.0.",
"author": "Xero Platform Team",
"license": "MIT",
"main": "dist/server.js",
"scripts": {
"build-ts": "node ./utils/build.js",
"postinstall": "npm run build-ts",
"lint": "tslint --project \"tsconfig.json\"",
"start-dev": "nodemon --config"
},
"engines": {
"node": "12.12.0"
},
"devDependencies": {
"@types/ejs": "^2.6.3",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.15",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^12.12.11",
"fs-extra": "^8.1.0",
"openid-client": "^3.8.3",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "^3.6.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.10",
"express": "^4.17.1",
"express-session": "^1.17.0",
"fs-extra": "^8.1.0",
"helper": "0.0.13",
"jwt-decode": "^2.2.0",
"module-alias": "^2.2.2",
"nodemon": "^1.19.4",
"path": "^0.12.7",
"session-file-store": "^1.4.0",
"xero-node": "9.1.0"
}
}