forked from datahub-v2/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.05 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
{
"name": "datahub-frontend",
"version": "0.4.1",
"description": "DataHub frontend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "nyc ava -v",
"watch:test": "npm run test -- --watch",
"lint": "xo --quite"
},
"xo": {
"space": true,
"semicolon": false,
"ignores": [
"public/**",
"tests/**"
],
"rules": {
"no-var": "warn"
}
},
"ava": {
"require": [
"babel-core/register"
],
"failFast": false,
"files": [
"tests/*test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/datopian/datahub-frontend.git"
},
"author": "Datopian",
"license": "MIT",
"bugs": {
"url": "https://github.com/datopian/datahub-frontend/issues"
},
"homepage": "https://github.com/datopian/datahub-frontend#readme",
"dependencies": {
"body-parser": "^1.17.2",
"bytes": "^2.5.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"datapackage": "^1.0.6",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-ab": "^0.7.1",
"express-session": "^1.15.5",
"front-matter": "^2.2.0",
"highlight.js": "^9.12.0",
"markdown-it": "^8.4.0",
"markdown-it-anchor": "^4.0.0",
"markdown-it-container": "^2.0.0",
"markdown-it-table-of-contents": "^0.3.2",
"md5": "^2.2.1",
"memory-cache": "^0.2.0",
"moment": "^2.18.1",
"nconf": "^0.8.4",
"nock": "^9.0.13",
"node-fetch": "^1.7.1",
"nunjucks": "^3.0.1",
"puppeteer": "^1.5.0",
"remove-markdown": "^0.2.0",
"sanitize-html": "^1.14.1",
"sitemap": "^1.13.0",
"slash": "^2.0.0",
"stripe": "^5.8.0",
"timeago.js": "^3.0.2",
"universal-analytics": "^0.4.17",
"xo": "^0.18.2"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-core": "^6.25.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-node6": "^11.0.0",
"mocha": "^3.4.2",
"nyc": "^14.1.1",
"supertest": "^3.0.0"
}
}