-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.23 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
{
"name": "entraos.js",
"version": "0.0.1",
"description": "JavaScript client to communicate EntraOS rest endpoints",
"source": "./src/main.ts",
"main": "./dist/entraos.js",
"types": "./dist/types.d.ts",
"module": "./dist/entraos.module.js",
"scripts": {
"build": "parcel build",
"dev": "parcel watch",
"lint": "eslint",
"lint-fix": "eslint --fix",
"prepare": "husky install",
"start": "NODE_DEBUG=http NODE_ENV=development npm run build && node ./dist/entraos.js --experimental-fetch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Teknologihuset/entraos-js.git"
},
"author": {
"name": "Dervis Mansuroglu",
"url": "https://github.com/dervism"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Teknologihuset/entraos-js/issues"
},
"homepage": "https://github.com/Teknologihuset/entraos-js#readme",
"files": [
"dist"
],
"bin": {
"entraos-js": "dist/main.js"
},
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@types/body-parser": "^1.19.2",
"@types/connect-ensure-login": "^0.1.7",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.14",
"@types/passport": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^ 5.36.1",
"@typescript-eslint/parser": "^ 5.36.1",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.0",
"nodemon": "^2.0.19",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
},
"dependencies": {
"body-parser": "^1.20.0",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.6",
"date-fns": "^2.29.2",
"dotenv": "^16.0.2",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-session": "^1.17.3",
"fp-ts": "^2.12.3",
"helmet": "^6.0.0",
"http-errors": "^2.0.0",
"morgan": "^1.10.0",
"openid-client": "^5.1.9",
"ts-pattern": "^4.0.5"
}
}