-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "esdoc-hosting",
"version": "0.0.0",
"private": true,
"description": "ESDoc Hosting Service",
"author": "h13i32maru",
"homepage": "https://doc.esdoc.org/",
"repository": {
"type": "git",
"url": "https://github.com/h13i32maru/esdoc-hosting"
},
"scripts": {
"build": "node ./script/build.js",
"start": "NODE_PATH=$(npm prefix -g)/lib/node_modules node out/src/App.js",
"test": "node ./script/test.js",
"test-prod": "node ./script/test-prod.js",
"test-ci": "node ./script/test-ci.js",
"forever": "NODE_PATH=$(npm prefix -g)/lib/node_modules forever start ./out/src/App.js",
"install-tool": "bash ./script/install-tool.sh"
},
"dependencies": {
"body-parser": "^1.13.2",
"co": "^4.6.0",
"color-logger": "0.0.3",
"core-js": "~0.9.18",
"elasticsearch": "^8.0.0",
"express": "^4.13.1",
"fs-extra": "~0.20.1",
"ice-cap": "0.0.4",
"marked": "^0.3.5",
"minimist": "~1.1.1",
"moment": "^2.10.3",
"sanitize-html": "^1.9.0",
"sqlite3": "^3.0.9"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.11.5",
"babel-register": "6.11.6",
"codecov": "1.0.1",
"nyc": "8.3.0",
"babel-plugin-istanbul": "2.0.1",
"mocha": "2.5.3"
}
}