This repository was archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.6 KB
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
{
"name": "skiosa-orm",
"version": "1.2.5",
"description": "ORM Package for Skiosa Database",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.spec.ts'",
"dev": "ts-node tests/dev_enviroment/app.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"src/*.ts\"",
"lint": "eslint -c .eslintrc.json --fix ./src/**/*.ts ./tests/**/*.ts ./src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skiosa/orm.git"
},
"files": [
"lib/**/*"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/skiosa/orm/issues"
},
"homepage": "https://github.com/skiosa/orm#readme",
"dependencies": {
"dotenv": "^16.0.0",
"type-graphql": "^1.1.1",
"type-graphql-dataloader": "^0.5.0",
"typeorm": "^0.3.4"
},
"devDependencies": {
"@graphql-tools/schema": "^8.3.6",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"chai": "^4.3.6",
"eslint": "^8.12.0",
"eslint-config-standart": "^0.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"express": "^4.17.3",
"express-graphql": "^0.12.0",
"mocha": "^9.2.2",
"prettier": "^2.6.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}