-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 KB
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
{
"name": "ckan-ui-bridge",
"version": "2.2.1",
"private": true,
"scripts": {
"start": "NODE_ENV=prod node ./bin/www",
"serve": "NODE_ENV=dev nodemon ./bin/www",
"lint": "npx eslint ."
},
"dependencies": {
"@snowplow/node-tracker": "^3.1.6",
"atob": "^2.1.2",
"axios": "^0.21.2",
"btoa": "^1.2.1",
"config": "^3.0.1",
"connect-redis": "^6.0.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-session": "^1.15.6",
"http-errors": "~1.6.2",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.19",
"mixin-deep": "^1.3.2",
"morgan": "~1.9.0",
"node-cache": "^4.2.0",
"passport": "^0.6.0",
"passport-openidconnect": "0.0.2",
"redis": "^3.1.2",
"request": "^2.88.0",
"set-value": "^4.0.1",
"tableschema": "^1.12.4",
"xlsx": "^0.17.0"
},
"devDependencies": {
"eslint": "^7.13.0",
"nodemon": "^2.0.12"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"no-unused-vars": "off"
},
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
}
}
}