-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "simple-api-ts",
"version": "0.5.25",
"main": "dist/source/index.js",
"module": "dist/source/index.js",
"types": "dist/source/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"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",
"prestart": "",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"dependencies": {
"bignumber.js": "9.0.0",
"cors": "2.8.5",
"express": "4.17.1",
"journaly": "0.1.5",
"flexiblepersistence": "1.0.57",
"ts-mixer": "5.2.1",
"pg": "8.2.1"
},
"devDependencies": {
"@types/cors": "2.8.6",
"@types/express": "4.17.6",
"@types/jest": "25.2.3",
"@types/node": "14.0.1",
"@types/pg": "7.14.3",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.3",
"jest": "26.0.1",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"sucrase": "3.15.0",
"ts-jest": "26.0.0",
"typescript": "3.9.2"
}
}