-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.03 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.03 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "joint-kit",
"version": "0.1.2",
"description": "A server-side toolset for building data layers and RESTful endpoints with NodeJS",
"author": "|M| <manicprone@gmail.com>",
"license": "MIT",
"main": "joint.js",
"repository": {
"type": "git",
"url": "git@github.com:manicprone/joint-kit.git"
},
"engines": {
"node": ">=15.14.0 <16.0.0 || >=16.20.1 <17.0.0 || >=20.9.0"
},
"packageManager": "yarn@4.5.0",
"scripts": {
"build": "cross-env NODE_ENV=build rollup -c",
"prepublish": "npm run build",
"lint": "standard",
"flint": "yarn lint --fix",
"build-test": "npm run build && npm run test",
"test": "vitest",
"test:coverage": "vitest --coverage --watch=false",
"test:unit": "vitest --config test/unit/vitest.config.js",
"test:functional": "vitest --config test/functional/vitest.config.js",
"precommit-message": "echo 'Pre-commit checks (linting)...' && exit 0",
"knex": "babel-node ./node_modules/.bin/knex --knexfile ./test/db/bookshelf/knexfile.js",
"migrate:make": "npm run knex migrate:make",
"seed:make": "npm run knex seed:make"
},
"pre-commit": [
"precommit-message",
"lint"
],
"dependencies": {
"@babel/runtime": "^7.25.0",
"lodash": "^4.17.15",
"moment": "2.29.1"
},
"peerDependencies": {
"knex": ">0.21.1"
},
"peerDependenciesMeta": {
"knex": {
"optional": false
}
},
"devDependencies": {
"@babel/core": "^7.25.0",
"@babel/plugin-transform-runtime": "^7.25.0",
"@babel/preset-env": "^7.25.0",
"@babel/register": "^7.25.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"bluebird": "3.7.2",
"bookshelf": "1.1.0",
"cross-env": "5.1.5",
"express": "4.17.1",
"knex": "^3.1.0",
"pre-commit": "1.2.2",
"rollup": "^4.24.0",
"sqlite3": "5.1.6",
"standard": "^17.1.0",
"supertest": "^7.0.0",
"vite": "^5.2.11",
"vitest": "^1.6.0"
}
}