-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
99 lines (99 loc) · 3.28 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ts-app",
"version": "1.0.0",
"description": "Boilerplate project for a TypeScript API (Express, tsoa) + UI (React/TSX)",
"repository": "https://github.com/lukeautry/ts-app",
"author": "Luke Autry <[email protected]>",
"license": "MIT",
"scripts": {
"cli": "ts-node ./src/cli/index.ts",
"lint:fix": "yarn lint --fix",
"lint": "eslint .",
"build": "tsc --build",
"watch": "yarn build --watch",
"typeorm": "ts-node ./node_modules/.bin/typeorm",
"start": "cross-env COMPILED_JS=true NODE_ENV=dev DB_CONNECTION=defaultdb SERVER_PORT=3000 node --es-module-specifier-resolution=node ./dist/server/start.js",
"cypress": "cypress open",
"unused": "ts-prune -p tsconfig.prune.json -i \"src/cli/commands|src/openapi-client/out|src/node/database/migrations\""
},
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"ejs": "^3.1.6",
"express": "^4.17.1",
"ioredis": "^4.27.9",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"tsoa": "^3.11.2",
"typeorm": "^0.2.37"
},
"devDependencies": {
"@kooneko/livereload-webpack-plugin": "^1.2.1",
"@testing-library/react": "^12.1.0",
"@types/assets-webpack-plugin": "^6.1.2",
"@types/body-parser": "^1.19.1",
"@types/chokidar": "^2.1.3",
"@types/clean-webpack-plugin": "^0.1.3",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.27.4",
"@types/jest": "^27.0.1",
"@types/method-override": "^0.0.32",
"@types/mini-css-extract-plugin": "^2.3.0",
"@types/minimatch": "^3.0.5",
"@types/node": "^16.9.2",
"@types/pg": "^8.6.1",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/readline-sync": "^1.4.4",
"@types/rimraf": "^3.0.2",
"@types/speed-measure-webpack-plugin": "^1.3.4",
"@types/styled-components": "^5.1.14",
"@types/supertest": "^2.0.11",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.4.1",
"@types/webpack-livereload-plugin": "^2.3.3",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"assets-webpack-plugin": "^7.1.1",
"chokidar": "^3.5.2",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"cypress": "^8.4.1",
"docker-compose": "^0.23.13",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.2",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"jest": "^27.2.0",
"jsdom": "^17.0.0",
"jsdom-global": "^3.0.2",
"keypress": "^0.2.1",
"minimatch": "^3.0.4",
"openapi-typescript-codegen": "^0.9.3",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"readline-sync": "^1.4.10",
"rimraf": "^3.0.2",
"speed-measure-webpack-plugin": "^1.5.0",
"styled-components": "^5.3.1",
"styled-reset": "^4.3.4",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"ts-prune": "^0.10.0",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-bundle-analyzer": "^4.4.2",
"yargs": "^17.1.1"
},
"resolutions": {
"@types/webpack": "5.28.0"
}
}