forked from datopian/frontend-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.49 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
{
"name": "frontend-v2",
"version": "1.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 --reporter=text-lcov | coveralls"
},
"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": {
"body-parser": "^1.19.0",
"bytes": "^3.1.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-http-proxy": "^1.5.1",
"express-session": "^1.16.1",
"i18n": "^0.8.3",
"markdown-it": "^8.4.2",
"moment": "^2.24.0",
"nconf": "^0.10.0",
"node-fetch": "^2.6.0",
"nodemailer": "^6.3.0",
"nunjucks": "^3.2.0",
"slugify": "^1.3.6",
"wpcom": "^5.4.2"
}
}