-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.85 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
{
"name": "@first-lego-league/identity-provider",
"version": "1.1.8",
"description": "Identity Provider using jwt-redirection",
"main": "server.js",
"scripts": {
"clean": "rimraf public",
"build": "webpack --mode production",
"prepack": "yarn clean && yarn build",
"lint": "eslint \"*.js\" client --ext .js",
"start": "concurrently -k devl \"node ./dummy-module.js\" \"webpack --watch --mode development\""
},
"repository": "https://github.com/FirstLegoLeague/identity-provider.git",
"engines": {
"node": ">=8.x"
},
"files": [
"public",
"lib",
"index.js",
"module.yml",
"yarn.lock"
],
"author": "Idan Stark <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"@first-lego-league/ms-configuration": "^2.4.0",
"@first-lego-league/ms-correlation": "^1.0.3",
"@first-lego-league/ms-logger": "^2.0.2",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.2.0",
"path": "^0.12.7",
"template-file": "^3.0.1"
},
"devDependencies": {
"@first-lego-league/dev-launcher": "^0.3.0",
"@first-lego-league/eslint-config": "^1.0.0",
"@first-lego-league/user-interface": "^2.1.2",
"concurrently": "^4.1.0",
"connect": "^3.7.0",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^4.0.0",
"hamburgers": "^1.1.3",
"html-webpack-plugin": "^3.2.0",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}