-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.11 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
{
"name": "yorm.js",
"version": "0.4.1",
"description": "Yet Another JavaScript ORM",
"homepage": "https://github.com/mdwheele/yorm#readme",
"scripts": {
"test": "jest",
"build": "rm -fr dist/* && tsc",
"prepublishOnly": "npm run build",
"dev": "tsc --watch"
},
"keywords": [
"orm",
"database"
],
"files": [
"dist"
],
"author": "Dustin Wheeler",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"dependencies": {
"etag": "^1.8.1",
"knex": "^2.5.1",
"lodash": "^4.17.21",
"nanoid": "^3.3.6",
"pluralize": "^8.0.0",
"ulidx": "^2.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.198",
"@types/nanoid": "^3.0.0",
"@types/node": "^20.6.0",
"@types/uuid": "^9.0.4",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"jest": "^29.7.0",
"pg": "^8.11.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}