-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
109 lines (109 loc) · 2.79 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
101
102
103
104
105
106
107
108
109
{
"name": "sdl_policy_server",
"version": "3.1.1",
"license": "BSD-3-Clause",
"description": "Integrates with SHAID to allow managing app permissions through policy tables",
"author": "Livio",
"contributors": [
"Nick Schwab <[email protected]>",
"Chris Rokita <[email protected]>",
"Jonathan Cooper <[email protected]>"
],
"private": true,
"scripts": {
"dev": "RUN_STATE=dev node entry.js",
"serve": "vue-cli-service serve",
"build": "NODE_ENV=build vue-cli-service build",
"lint": "vue-cli-service lint",
"start": "npm run dev",
"test": "RUN_STATE=test node entry.js",
"db-migrate-up": "RUN_STATE=migrate-up node entry.js",
"start-server": "npm run build && RUN_STATE=startup node entry.js",
"db-migrate-reset": "RUN_STATE=reset node entry.js"
},
"dependencies": {
"@popperjs/core": "^2.4.4",
"body-parser": "^1.20.2",
"bootstrap": "4.5.2",
"bootstrap-vue": "2.17.3",
"check-types": "7.3.0",
"core-js": "^3.22.8",
"cors": "^2.8.5",
"cron": "1.3.0",
"db-migrate": "^0.11.10",
"db-migrate-pg": "1.2.2",
"dotenv": "^11.0.0",
"helmet": "^3.15.1",
"jquery": "^3.4.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mustache": "^3.0.1",
"nodemailer": "^6.6.1",
"pem": "^1.14.8",
"pg": "8.7.1",
"portal-vue": "^2.1.7",
"portfinder": "1.0.13",
"redis": "^3.1.2",
"shaidkit": "^1.4.0",
"sql-bricks-postgres": "^0.6.0",
"tmp": "^0.1.0",
"uuid": "3.2.1",
"vue": "^2.6.11",
"vue-json-pretty": "1.3.5",
"vue-ladda": "0.0.13",
"vue-resource": "1.5.3",
"vue-router": "2.7.0",
"vue-scrollto": "2.11.0",
"vue-session": "0.9.10",
"winston": "2.3.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-service": "5.0.8",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"chai-json-schema": "^1.5.0",
"chalk": "2.0.1",
"connect-history-api-fallback": "1.3.0",
"cssnano": "^5.0.17",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^6.2.2",
"eventsource-polyfill": "0.9.6",
"express": "^4.18.2",
"http-proxy-middleware": "^0.19.1",
"mocha": "^9.2.1",
"mocha-steps": "^1.3.0",
"opn": "5.1.0",
"ora": "1.2.0",
"rimraf": "2.6.0",
"semver": "^5.3.0",
"shelljs": "^0.8.5",
"vue-template-compiler": "^2.6.11"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}