forked from kobotoolbox/enketo-express
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.74 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
{
"name": "enketo-express",
"description": "A simplified version of Enketo Smart Paper that requires a constant connection to the server.",
"homepage": "",
"version": "1.22.1",
"main": "./app.js",
"repository": {
"type": "git",
"url": "https://github.com/kobotoolbox/enketo-express"
},
"contributors": [
"Martijn van de Rijdt"
],
"scripts": {
"start": "node .",
"test": "grunt test"
},
"license": "Apache-2.0",
"dependencies": {
"aliasify": "1.8.x",
"basic-auth": "1.0.x",
"body-parser": "1.x.x",
"bristol": "0.3.x",
"busboy": "0.2.x",
"compression": "1.x.x",
"cookie-parser": "1.4.x",
"csurf": "1.8.x",
"db.js": "0.10.x",
"debug": "2.x.x",
"enketo-core": "4.5.2",
"enketo-transformer": "1.7.3",
"express": "4.x.x",
"grunt": "0.4.x",
"grunt-browserify": "4.0.x",
"grunt-contrib-uglify": "0.11.x",
"grunt-env": "0.4.x",
"grunt-sass": "1.1.x",
"i18next": "1.10.x",
"i18next-client": "1.11.x",
"jade": "1.x.x",
"jquery": "2.1.x",
"jszip": "2.5.x",
"jwt-simple": "0.4.x",
"libxslt": "0.6.1",
"lie": "3.0.x",
"load-grunt-tasks": "3.x.x",
"lodash": "3.10.x",
"morgan": "1.x.x",
"papaparse": "4.1.x",
"redis": "2.4.x",
"request": "2.67.x",
"serve-favicon": "2.x.x",
"time-grunt": "1.x.x",
"vex-js": "2.3.x",
"xml2js": "0.4.x"
},
"devDependencies": {
"chai": "3.4.x",
"chai-as-promised": "*",
"grunt-concurrent": "2.x.x",
"grunt-contrib-jshint": "0.11.x",
"grunt-contrib-watch": "0.6.x",
"grunt-jsbeautifier": "0.2.x",
"grunt-karma": "0.12.x",
"grunt-mocha-test": "0.12.x",
"grunt-nodemon": "0.4.x",
"grunt-shell": "1.1.x",
"gulp": "3.9.x",
"i18next-parser": "0.3.x",
"karma": "0.13.x",
"karma-browserify": "4.4.x",
"karma-chrome-launcher": "0.2.x",
"karma-firefox-launcher": "0.1.x",
"karma-mocha": "0.2.x",
"karma-opera-launcher": "0.3.x",
"karma-phantomjs-launcher": "0.2.x",
"karma-safari-launcher": "0.1.x",
"karma-sinon-chai": "1.1.x",
"mocha": "2.3.x",
"phantomjs": "1.9.x",
"supertest": "1.1.x"
},
"aliasify": {
"aliases": {
"text!enketo-config": "./public/temp-client-config.json",
"enketo-config": "./public/temp-client-config.json",
"widgets": "./public/js/src/module/widgets",
"../../js/file-manager": "./public/js/src/module/file-manager"
}
}
}