-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.27 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
{
"name": "view-builder",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"clean": "git clean -dfx -e node_modules -e .idea -e .vscode -e .husky",
"postinstall": "yarn-deduplicate && patch-package && wsrun -m -c postinstall",
"prepare": "husky install",
"lint": "eslint . --ext .ts,.js --quiet --ignore-path .gitignore --ignore-path .eslintignore",
"test": "c8 mocha **/*.test.js",
"copier:root": "copier -a .copier-project.yaml -s apps/api update",
"bootstrap": "dotenv -c local -- run-s bootstrap:dev bootstrap:users",
"bootstrap:dev": "wsrun -msc bootstrap resources resources.dev",
"bootstrap:live": "wsrun -msc bootstrap resources resources.live",
"bootstrap:users": "node apps/api/loadUsers.js",
"start": "knossos serve $SPARQL_ENDPOINT --updateUrl $SPARQL_UPDATE_ENDPOINT --name view-builder --user $SPARQL_USER --password $SPARQL_PASSWORD",
"precommit": "yarn lint && wsrun -m -c precommit",
"build": "wsrun -m -c build",
"copier:api": "copier -a .copier-api.yaml update",
"preprod": "run-s bootstrap:live bootstrap:users",
"prod": "node --loader node-loader-raw server.js"
},
"author": "Zazuko GmbH <[email protected]>",
"repository": "https://github.com/zazuko/ssz-view-builder",
"dependencies": {
"@hydrofoil/knossos": "^0.9.11",
"@hydrofoil/talos": "^0.6.2",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-conditional-middleware": "^2.1.1",
"express-history-api-fallback": "^2.2.1",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"path-to-regexp": "^6.2.0",
"postinstall-postinstall": "^2.1.0",
"wsrun": "^5.2.4"
},
"resolutions": {
"url-state": "3.0.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@open-wc/eslint-config": "^8.0.2",
"@tpluscode/eslint-config": "^0.4.4",
"@types/sparql-http-client": "^2.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"c8": "^7.12.0",
"chai-as-promised": "^7.1.1",
"chai-snapshot-matcher": "^2.0.3",
"dotenv-cli": "^6.0.0",
"eslint": "8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-lit-a11y": "^2.2.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-wc": "^1.3.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"sinon-chai": "^3.7.0",
"standard": "^17.0.0",
"ts-node": "^10.5.0",
"typescript": "^4.7.4",
"yarn-deduplicate": "^5.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"mocha": {
"exclude": "**/node_modules/**",
"recursive": true,
"loader": "node-loader-raw",
"require": [
"mocha-setup.cjs"
]
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
],
"*.rej": "exit 1"
},
"c8": {
"all": true,
"reporter": [
"lcov",
"text"
],
"exclude": [
"mocha-setup.cjs",
"server.js",
"test",
"coverage",
"packages/testing",
"*/*/test",
"apps/www/webpack.config.cjs",
"apps/ontodia"
]
}
}