-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 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
{
"scripts": {
"test": "jest --passWithNoTests",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --ignore-watch node_modules src/app.ts",
"start": "node ./build/src/app.js",
"build": "rimraf ./build && tsc",
"postinstall": "tsc",
"typeorm:cli": "ts-node ./node_modules/typeorm/cli -f ./src/ormconfig.ts"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.20",
"@types/joi": "^14.3.4",
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.8.0",
"eslint": "^7.13.0",
"express": "^4.17.1",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=12.18.4"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/es6-shim": "^0.31.41",
"@types/node": "^14.14.20",
"@types/pg": "^7.14.7",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dayjs": "^1.9.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.3.0",
"pg": "^8.5.1",
"postgres": "^1.0.2",
"readme-md-generator": "^1.0.0",
"reflect-metadata": "^0.1.13",
"string-strip-html": "^6.3.0",
"ts-custom-error": "^3.2.0",
"ts-node": "^9.1.1",
"typeorm": "^0.2.29",
"typeorm-naming-strategies": "^2.0.0",
"uuid": "^8.3.2",
"uuidv4": "^6.2.5"
}
}