-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
80 lines (80 loc) · 1.96 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
{
"name": "frontend-v2",
"version": "2.0.0",
"description": "Frontend application for CKAN backend.",
"main": "index.js",
"engines": {
"node": ">=8.10.0"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon -e 'js html' index.js",
"test": "nyc ava",
"test:watch": "nyc ava --watch",
"test:report": "nyc ava && nyc report --report-dir ./coverage --reporter=lcov"
},
"ava": {
"files": [
"tests/**/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/datopian/frontend-v2.git"
},
"author": "Datopian",
"license": "MIT",
"bugs": {
"url": "https://github.com/datopian/frontend-v2/issues"
},
"homepage": "https://github.com/datopian/frontend-v2#readme",
"devDependencies": {
"ava": "^2.0.0",
"browser-sync": "^2.26.7",
"coveralls": "^3.0.3",
"nock": "^10.0.6",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@oryd/kratos-client": "0.0.0-next.b279b1f1b2a7",
"body-parser": "^1.19.0",
"bytes": "^3.1.0",
"connect-flash": "^0.1.1",
"connect-redis": "^5.0.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dompurify": "^2.2.6",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-http-proxy": "^1.5.1",
"express-jwt": "^6.0.0",
"express-session": "^1.16.1",
"express-validator": "^6.9.2",
"googleapis": "^116.0.0",
"i18n": "^0.8.3",
"jsdom": "^16.4.0",
"jwks-rsa": "^1.8.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.21",
"markdown-it": "^8.4.2",
"md5": "^2.2.1",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"nconf": "^0.10.0",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.16",
"nunjucks": "^3.2.0",
"redis": "^3.1.1",
"slugify": "^1.3.6",
"url-join": "^4.0.1",
"winston": "^3.3.3",
"wpcom": "^5.4.2"
}
}