forked from Satrium/LinksOfTheAnvil
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.64 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
{
"name": "linksoftheanvil",
"version": "0.4.0",
"description": "A Visualization for connections between worldanvil articles",
"main": "index.js",
"scripts": {
"start": "node index.js",
"debug": "node index.js --trace-warning",
"build": "npm run build:server && npm run build:angular",
"build:angular": "cd app && npm run build:prod",
"build:server": "npm run schema && tsc --project server/tsconfig.json --outDir ./dist",
"schema": "typescript-json-schema ./server/tsconfig.json Preset --required --out server/schema/preset.schema.json",
"install:all": "npm install && npm run install:angular",
"install:angular": "cd app && npm install",
"ci:all": "npm ci && npm run ci:angular",
"ci:angular": "cd app && npm ci --cache .npm --prefer-offline",
"serve:angular": "cd app && ng serve",
"serve": "concurrently \"npm start\" \"npm run serve:angular\""
},
"author": "Anton Pohli",
"license": "MIT",
"dependencies": {
"async-redis": "^1.1.7",
"body-parser": "^1.19.0",
"bottleneck": "^2.19.5",
"convict": "^6.0.1",
"convict-format-with-validator": "^6.0.1",
"express": "^4.17.1",
"fp-ts": "^2.10.4",
"io-ts": "^2.2.16",
"jlouvain": "^2.0.0",
"jsonschema": "^1.4.0",
"node-fetch": "^2.6.1",
"rethinkdb": "^2.4.2",
"tslib": "^2.2.0",
"uuid": "^8.3.2",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/node-fetch": "^2.5.10",
"concurrently": "^5.2.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.8.3",
"typescript-json-schema": "^0.50.0",
"typescript-json-validator": "^2.4.2"
}
}