-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
{
"name": "beta-parlez-vous",
"version": "0.0.1",
"description": "",
"engines": {
"node": "14.15.x"
},
"scripts": {
"build": "rm -rf ./build && tsc",
"lint": "eslint ./src --ext .ts",
"format": "prettier '**/*.ts' --write && eslint ./src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"start:dev": "(tsc --watch &) && NODE_ENV=development NODE_PATH=./build nodemon --watch ./build ./build/index.js",
"start": "NODE_PATH=./build node ./build/index.js",
"migrate-db:dev": "prisma migrate dev --preview-feature",
"migrate-db:prod": "prisma migrate deploy",
"format:schema": "prisma format",
"test": "jest",
"watch": "tsc --watch --noEmit",
"export-lint": "ts-unused-exports ./tsconfig.json"
},
"author": "Giorgio Delgado",
"license": "ISC",
"dependencies": {
"@prisma/client": "^2.21.2",
"@types/bcrypt": "3.0.0",
"@types/body-parser": "1.19.0",
"@types/cors": "2.8.9",
"@types/express": "4.16.0",
"@types/helmet": "0.0.48",
"@types/lodash": "^4.14.168",
"@types/luxon": "^1.26.4",
"@types/node": "^14.14.41",
"@types/response-time": "^2.3.4",
"@types/uuid": "8.3.0",
"@types/validator": "^13.1.3",
"@types/ws": "^7.4.1",
"axios": "^0.21.1",
"bcrypt": "3.0.6",
"body-parser": "1.19.0",
"cors": "2.8.5",
"express": "4.16.4",
"goby": "^1.1.2",
"helmet": "4.1.1",
"lodash": "^4.17.21",
"luxon": "^1.26.0",
"neverthrow": "^4.2.1",
"prisma-client-lib": "^1.34.12",
"response-time": "^2.3.2",
"runtypes": "4.0.0",
"typescript": "4.1.2",
"uuid": "8.3.2",
"validator": "^13.5.2",
"winston": "3.3.3"
},
"devDependencies": {
"@types/jest": "25.2.1",
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"eslint": "7.15.0",
"eslint-config-prettier": "6.10.1",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.2.0",
"jest": "25.3.0",
"nodemon": "2.0.4",
"prettier": "2.0.4",
"prisma": "^2.21.2",
"ts-jest": "25.3.1",
"ts-unused-exports": "6.1.0"
}
}