-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
121 lines (121 loc) · 3.37 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
111
112
113
114
115
116
117
118
119
120
121
{
"name": "cruddl",
"version": "3.3.1",
"description": "",
"license": "MIT",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "./build.sh",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit --skipLibCheck",
"test": "rimraf dist && tsc --noEmit --skipLibCheck && mocha './spec/**/*.spec.ts'",
"test:dropdb": "ts-node ./spec/regression/drop-test-db.ts",
"test:perf": "node cruddl-bench",
"test:coverage": "nyc --reporter=text-summary npm test",
"test:coverage:full": "nyc --reporter=html npm test",
"start": "node cruddl",
"start_arangodb": "arangodb --starter.mode=single --starter.local --starter.port=8528 --starter.data-dir=./db start",
"stop_arangodb": "arangodb --starter.mode=single --starter.local --starter.port=8528 --starter.data-dir=./db stop",
"compile-json-schema": "ajv --all-errors true compile -s src/schema/preparation/source-validation-modules/schema/schema.json -o src/schema/preparation/source-validation-modules/schema/validate-schema.js",
"mrproper": "rimraf dist db node_modules package-lock.json",
"prepare": "husky install",
"dev": "node cruddl-dev.js",
"knip": "knip",
"knip:prod": "knip --production"
},
"repository": {
"type": "git",
"url": "https://github.com/AEB-labs/cruddl.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "",
"browser": {
"@arangodb": false
},
"engines": {
"npm": ">=6.0.0",
"node": ">=18.0.0"
},
"devDependencies": {
"@graphql-tools/utils": "^8.8.0",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/deep-equal": "^1.0.1",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/lodash": "^4.14.184",
"@types/mocha": "10.0.6",
"@types/node": "^18.19.42",
"@types/pluralize": "0.0.29",
"@types/uuid": "^8.3.4",
"ajv-cli": "^5.0.0",
"apollo-server": "^3.10.0",
"body-parser": "^1.20.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"cors": "^2.8.5",
"cpy-cli": "^4.1.0",
"deep-equal-in-any-order": "^1.1.20",
"express": "^4.19.2",
"graphql": "^16.6.0",
"husky": "^8.0.1",
"knip": "^5.27.0",
"lint-staged": "^15.2.10",
"log4js": "^6.6.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"rimraf": "^3.0.2",
"stats-lite": "^2.2.0",
"ts-node": "^10.8.2",
"typescript": "~5.5.4"
},
"dependencies": {
"@graphql-tools/schema": "^8.5.0",
"@js-joda/core": "^5.2.0",
"ajv": "^8.11.0",
"ansi-styles": "^5.2.0",
"arangojs": "^8.1.0",
"deep-equal": "^2.0.5",
"graphql-tag": "^2.12.4",
"graphql-type-json": "^0.3.2",
"json-lint": "^0.1.0",
"json-source-map": "^0.6.1",
"lodash": "^4.17.21",
"memorize-decorator": "^0.2.2",
"pluralize": "^8.0.0",
"strip-json-comments": "^3.0.1",
"tslib": "^2.4.0",
"uuid": "^8.3.2",
"yaml-ast-parser": "0.0.43"
},
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"all": true
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}