This repository has been archived by the owner on May 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
66 lines (66 loc) · 1.57 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
{
"name": "safe-typeorm",
"version": "2.0.5",
"description": "Make TypeORM much safer",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && ttsc",
"dev": "npm run build -- --watch",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"prettier": "prettier src --write",
"test": "node lib/test"
},
"repository": {
"type": "git",
"url": "https://github.com/samchon/safe-typeorm"
},
"keywords": [
"safe",
"typeorm"
],
"author": "Jeongho Nam",
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/safe-typeorm/issues"
},
"homepage": "https://github.com/samchon/safe-typeorm",
"dependencies": {
"bcryptjs": "^2.4.3",
"pluralize": "^8.0.0",
"tstl": "^2.5.13",
"typeorm": "^0.2.41",
"uuid": "^8.3.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/bcryptjs": "^2.4.2",
"@types/cli": "^0.11.20",
"@types/node": "^14.14.21",
"@types/pluralize": "^0.0.29",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"cagen": "^1.0.0",
"cli": "^1.0.1",
"eslint": "^8.23.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sloc": "^0.2.1",
"sqlite3": "^5.0.2",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.15",
"typescript": "^4.5.2",
"typescript-transform-paths": "^3.4.6"
},
"files": [
"LICENSE",
"README.md",
"package.json",
"lib",
"src",
"!lib/test",
"!src/test"
]
}