-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.25 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
67
68
69
70
71
72
73
{
"name": "backapi",
"productName": "backAPI",
"author": "Judah Holanda Correia Lima <judahholanda7@gmail.com> (https://judahh.com)",
"version": "3.1.12",
"private": false,
"description": "A simple API framework using Flexible Persistence",
"main": "dist/source/index.js",
"module": "dist/source/index.js",
"types": "dist/source/index.d.ts",
"files": [
"dist"
],
"keywords": [
"api",
"api-framework",
"nodejs",
"typescript",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Judahh/back.git"
},
"homepage": "https://github.com/Judahh/back#readme",
"license": "MIT",
"config": {
"jest": "--coverage --passWithNoTests --ci --verbose --forceExit --detectOpenHandles --colors",
"integration_config": "-i -c integration.config.json",
"unit_coverall": "tests/unit/coverage/lcov.info",
"integration_coverall": "tests/integration/coverage/lcov.info",
"path_dist": "dist",
"path_source": "source",
"path_server": "source/server"
},
"scripts": {
"postinstall": "",
"prepublish": "",
"build": "rm -rf dist/ && tsc",
"test": "jest --passWithNoTests --ci --verbose --forceExit --detectOpenHandles",
"integration": "jest -i -c integration.config.json --passWithNoTests --ci --verbose --forceExit --detectOpenHandles",
"start": "node dist/source/server.js",
"prestart": "",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"dependencies": {
"@flexiblepersistence/default-initializer": "latest",
"@flexiblepersistence/service": "latest",
"flexiblepersistence": "latest",
"ts-mixer": "latest",
"journaly": "latest"
},
"devDependencies": {
"@flexiblepersistence/sequelize": "latest",
"@flexiblepersistence/dao": "latest",
"@flexiblepersistence/pgsql": "latest",
"sequelize": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-filenames": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-prettier": "latest",
"jest": "latest",
"prettier": "latest",
"ts-jest": "latest",
"typescript": "latest"
}
}