-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
110 lines (110 loc) · 3.62 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@contentacms/contentajs",
"version": "0.0.0-development",
"description": "A nodejs server that proxies to Contenta CMS and holds custom code.",
"main": "lib/server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/contentacms/contentajs.git"
},
"bugs": {
"url": "https://github.com/contentacms/contentajs/issues"
},
"homepage": "https://github.com/contentacms/contentajs#readme",
"author": "Mateu Aguiló Bosch <mateu.aguilo.bosch@gmail.com> (e0ipso)",
"license": "MIT",
"private": false,
"engines": {
"node": ">=8.10"
},
"scripts": {
"start": "npm run build && node ./node_modules/.bin/pm2 start --name contentajs --env production",
"stop": "node ./node_modules/.bin/pm2 stop contentajs",
"delete": "node ./node_modules/.bin/pm2 delete contentajs",
"debug": "DEBUG=*,-babel node ./node_modules/.bin/babel-node --inspect-brk ./src/server.js",
"test": "NODE_ENV=test jest --coverage",
"test-ci": "NODE_ENV=test jest --coverage --ci --runInBand",
"debug-test": "npm run build && NODE_ENV=test node --inspect-brk ./node_modules/.bin/jest --runInBand",
"documentation": "emdaer --yes && git add *.md",
"prepare": "npm run build",
"flow": "flow status",
"build": "./node_modules/.bin/babel src -d lib --copy-files --delete-dir-on-start",
"prettier": "prettier --write './**/*.js' && eslint './**/*.js' --fix",
"lint": "eslint .",
"lint-json": "eslint --format=json . > ./__coverage__/eslint.json",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@commitlint/cli": "^6.2.0",
"@commitlint/config-angular": "^6.1.3",
"@emdaer/cli": "^3.2.4",
"@emdaer/plugin-contributors-details-github": "^3.2.4",
"@emdaer/plugin-image": "^3.2.4",
"@emdaer/plugin-import": "^3.2.4",
"@emdaer/plugin-license-reference": "^3.2.4",
"@emdaer/plugin-shields": "^3.2.4",
"@emdaer/plugin-value-from-package": "^3.2.4",
"@emdaer/transform-prettier": "^3.2.4",
"@emdaer/transform-table-of-contents": "^3.2.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^23.6.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-config-problems": "^1.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-flowtype": "^3.10.3",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-prettier": "^3.1.0",
"flow-bin": "^0.85.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-express": "^1.10.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"semantic-release": "^15.13.16",
"semantic-release-conventional-commits": "^2.0.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"config": "^1.30.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-http-proxy": "^1.5.1",
"got": "^8.3.1",
"http-errors": "^1.7.2",
"jsonrpc-lite": "^1.3.1",
"keyv": "^3.0.0",
"keyv-lru": "^2.1.0",
"keyv-null": "^1.0.0",
"lodash": "^4.17.10",
"pino": "^4.16.1",
"pm2": "^3.5.1",
"subrequests": "^2.16.1",
"subrequests-express": "^3.2.0",
"subrequests-json-merger": "^1.13.0"
},
"publishConfig": {
"access": "public"
},
"release": {
"analyzeCommits": "semantic-release-conventional-commits"
},
"directories": {
"doc": "docs",
"lib": "lib"
},
"keywords": [
"Contenta",
"proxy",
"CMS",
"headless"
]
}