-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.45 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.45 KB
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
{
"name": "contentjet-api",
"version": "0.17.1",
"description": "A Node based back end for contentjet, a powerful headless API-first CMS.",
"repository": {
"type": "git",
"url": "https://github.com/contentjet/contentjet-api"
},
"private": false,
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"dev": "npm run build && concurrently \"tsc --watch\" \"nodemon dist/server.js\"",
"migrate": "knex --knexfile dist/knexfile.js migrate:latest && node dist/scripts/create-permissions.js",
"rollback": "knex --knexfile dist/knexfile.js migrate:rollback",
"test": "./test.sh",
"create-admin-user": "node ./dist/scripts/create-admin-user.js",
"build": "tsc",
"lint": "tslint ./src/*.ts ./src/**/*.ts"
},
"author": "Will Dady",
"license": "MIT",
"dependencies": {
"axios": "^0.16.2",
"body-parser": "^1.18.3",
"dotenv": "^4.0.0",
"ejs": "^2.6.1",
"inquirer": "^3.3.0",
"jsonwebtoken": "^8.3.0",
"kcors": "^2.2.2",
"knex": "^0.13.0",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"koa-send": "^4.1.3",
"lodash": "^4.17.10",
"mjml": "^4.1.1",
"mkdirp": "^0.5.1",
"moment": "^2.22.2",
"multer": "^1.3.1",
"nodemailer": "^4.6.7",
"objection": "^0.9.4",
"pg": "^6.4.1",
"pg-hstore": "^2.3.2",
"sharp": "^0.18.4",
"swagger-ui-dist": "^3.18.0",
"underscore.string": "^3.3.4",
"uuid": "^3.3.2",
"validate.js": "^0.12.0",
"yamljs": "^0.3.0"
},
"false": {},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/dotenv": "^4.0.3",
"@types/ejs": "^2.6.0",
"@types/inquirer": "0.0.36",
"@types/jsonwebtoken": "^7.2.8",
"@types/kcors": "^2.2.3",
"@types/knex": "0.0.67",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^3.0.26",
"@types/koa-multer": "^1.0.0",
"@types/koa-router": "^7.0.31",
"@types/koa-send": "^4.1.1",
"@types/lodash": "^4.14.116",
"@types/mjml": "^4.0.0",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^2.2.48",
"@types/moment": "^2.13.0",
"@types/node": "^8.10.23",
"@types/nodemailer": "^4.6.2",
"@types/sharp": "^0.17.9",
"@types/underscore.string": "0.0.32",
"@types/uuid": "^3.4.3",
"@types/yamljs": "^0.2.30",
"chai": "^4.0.1",
"concurrently": "^3.6.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
}
}