-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.72 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.72 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
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
{
"name": "junior-fullstack-interview",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"node": "TS_NODE_TRANSPILE_ONLY=true NODE_OPTIONS=${npm_package_config_node_options} node",
"mocha": "TZ=UTC NODE_OPTIONS=${npm_package_config_node_options} TS_NODE_TRANSPILE_ONLY=true mocha --timeout 10000 --colors --exit './{src,migrations}/**/*.test.ts'",
"build": "webpack",
"start": "nodemon --ext ts --watch src --watch types --exec 'npm run start:local'",
"start:local": "npm run node -- src/server.ts",
"start:services": "docker-compose rm --force && docker-compose up --build",
"test": "npm run mocha -- 'src/**/*.spec.ts' --exclude '**/flycheck_*.ts'",
"test:types": "tsc --noEmit --project .",
"lint": "eslint '**/*.ts'",
"prettier": "prettier '**/*.ts' -w"
},
"config": {
"node_options": "--require ts-node/register --require tsconfig-paths/register --require reflect-metadata --require dotenv/config"
},
"dependencies": {
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"express": "^4.18.2",
"knex": "^3.1.0",
"pg": "^8.11.3",
"ramda": "^0.29.1",
"reflect-metadata": "^0.1.14",
"request": "^2.88.2",
"serverless-http": "^3.2.0",
"useragent": "^2.3.0",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-http": "^4.2.0",
"@types/chai-subset": "^1.3.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"@types/node-fetch": "^2.6.9",
"@types/ramda": "^0.29.9",
"@types/sinon": "^17.0.2",
"@types/sinon-chai": "^3.2.12",
"@types/supertest": "^2.0.16",
"@types/useragent": "^2.3.4",
"@types/uuid": "^9.0.7",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.4.0",
"chai-subset": "^1.6.0",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"glob": "^10.3.10",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"raw-loader": "^4.0.2",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"supertest": "^6.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"validator": "^13.11.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}