-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
{
"name": "distbin",
"version": "1.3.0",
"description": "Post bin with distributed social features.",
"main": "src",
"directories": {
"test": "test"
},
"dependencies": {
"@types/accepts": "^1.3.5",
"@types/dompurify": "0.0.31",
"@types/highlight.js": "^9.12.3",
"@types/jsdom": "^11.0.5",
"@types/lodash": "^4.14.85",
"@types/marked": "^0.3.0",
"@types/morgan": "^1.7.35",
"@types/node-uuid": "0.0.28",
"@types/parse-link-header": "^1.0.0",
"@types/winston": "^2.3.7",
"accepts": "^1.3.3",
"dompurify": "^0.8.4",
"highlight.js": "^9.15.6",
"jsdom": "^9.9.1",
"jsonld": "^0.4.11",
"jsonld-rdfa-parser": "^1.5.1",
"lodash": "^4.17.4",
"marked": "^0.3.19",
"morgan": "^1.9.0",
"node-fetch": "^1.6.3",
"node-uuid": "^1.4.7",
"parse-link-header": "^0.4.1",
"portfinder": "^1.0.13",
"url-regex": "^5.0.0",
"uuid": "^3.1.0",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/node": "^8.10.19",
"@types/node-fetch": "^2.1.1",
"copyfiles": "^1.2.0",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-no-only-tests": "^2.0.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.1",
"prettier": "^1.16.4",
"ts-node": "^6.1.0",
"tsc-watch": "^1.0.22",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.1.0",
"typescript": "^2.9.1",
"typescript-eslint-parser": "^8.0.1"
},
"peerDependencies": {
"hoek": "^4.2.1"
},
"config": {
"port": 8000
},
"prettier": {
"trailingComma": "all"
},
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts' 'bin/**/*.ts'",
"lint-fix": "tslint --fix -c tslint.json 'src/**/*.ts' 'test/**/*.ts' 'bin/**/*.ts'",
"prettier": "prettier '{package.json,tsconfig.json,src/**/*.{ts,tsx}}' --write",
"test": "ts-node test",
"start": "node ./dist/bin/server",
"start-dev": "tsc-watch --onSuccess 'npm start'",
"start:ts-node": "ts-node bin/server.ts",
"tsc": "tsc",
"build": "tsc && npm run build.copyfiles",
"build.copyfiles": "copyfiles './src/**/*.json' dist/"
},
"author": "",
"license": "ISC"
}