-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 913 Bytes
/
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
{
"name": "typeorm-static",
"description": "Static TypeORM connection using env vars",
"version": "1.1.1",
"main": "typeormstatic",
"typings": "typeormstatic",
"repository": "https://github.com/nykula/typeorm-static",
"author": "Denys Nykula <[email protected]>",
"license": "0BSD",
"dependencies": {
"@types/node": "^12.6.2",
"@types/shortid": "0.0.29",
"shortid": "^2.2.8",
"source-map-support": "^0.5.12"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"dotenv": "^8.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.0.9",
"typeorm": "^0.2.18",
"typescript": "^3.5.3"
},
"peerDependencies": {
"typeorm": "^0.2.18"
},
"scripts": {
"format": "prettier --write *.ts && npm test",
"prepare": "tsc",
"test": "tsc && node db.test && node id.test && prettier -c *.ts"
}
}