-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.11 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
{
"name": "ditapi",
"version": "0.0.0",
"private": true,
"scripts": {
"init": ". ./bin/init.sh",
"start": "NODE_ENV=development node ./bin/www",
"start:production": "NODE_ENV=production PORT=3001 node ./bin/www",
"test": "NODE_ENV=test mocha ./test/",
"test:nyan": "NODE_ENV=test mocha -R nyan ./test/",
"test:watch": "NODE_ENV=test mocha ./test/ --watch",
"unit": "NODE_ENV=test mocha ./test/unit/ --recursive",
"unit:watch": "NODE_ENV=test mocha ./test/unit/ --watch --recursive",
"test-all": "NODE_ENV=test mocha ./test/ --recursive",
"test-all:watch": "NODE_ENV=test mocha ./test/ --recursive --watch",
"nyc": "NODE_ENV=test nyc mocha ./test/ --recursive",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"init-db": "node ./bin/init-db.js",
"init-db:development": "NODE_ENV=development node ./bin/init-db.js",
"init-db:test": "NODE_ENV=test node ./bin/init-db.js",
"init-db-standalone": "NODE_ENV=test node ./bin/init-db-standalone.js"
},
"dependencies": {
"accept": "^3.0.1",
"ajv": "^5.2.3",
"allow-methods": "^1.0.4",
"arangojs": "^5.0.3",
"autolinker": "^1.4.4",
"basic-auth": "^2.0.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"debug": "^2.6.9",
"email-templates": "^2.5.2",
"express": "^4.16.2",
"fs-extra": "^4.0.1",
"handlebars": "^4.0.10",
"he": "^1.1.1",
"helmet": "^3.8.2",
"identicon.js": "^2.1.0",
"image-type": "^3.0.0",
"jsonapi-serializer": "^3.4.1",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.16.4",
"multer": "^1.3.0",
"node-cron": "^1.1.3",
"node-sass": "^4.5.3",
"nodemailer": "^4.1.3",
"prompt": "^1.0.0",
"sanitize-html": "^1.14.1",
"sharp": "^0.18.2",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"eslint": "^4.8.0",
"eslint-plugin-no-unsafe-regex": "^1.0.0",
"image-size": "^0.6.1",
"maildev": "^0.14.0",
"mocha": "^4.0.1",
"node-mocks-http": "^1.6.5",
"nyc": "^11.2.1",
"rewire": "^2.5.2",
"should": "^13.1.2",
"sinon": "^4.0.1",
"superagent-defaults": "^0.1.14",
"supertest": "^3.0.0"
}
}