-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.25 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
{
"name": "aleno_pricing",
"version": "1.0.0",
"description": "Aleno - Lead/Senior Developer - Assessment",
"repository": {
"type": "git",
"url": "https://github.com/fadinasr/aleno_pricing"
},
"keywords": [
"TypeScript",
"express",
"nodejs",
"eslint",
"challenge",
"Aleno"
],
"author": "Fadi Nasr",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint src/server.ts",
"postinstall": "chmod +x ./scripts/dev.sh",
"setup-actions": "chmod +x ./scripts/setup-github-actions.sh; ./scripts/setup-github-actions.sh",
"build": "tsc",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts",
"dev": "./scripts/dev.sh",
"dev-server": "NODE_ENV=development nodemon",
"ts-node-server": "ts-node src/server.ts",
"start": "node dist/src/server.js",
"test": "jest",
"fix-lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix",
"build:client": "cd client && npm install && npm run build"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"@types/lodash": "^4.14.176",
"body-parser": "1.19.0",
"chalk": "4.1.0",
"compression": "1.7.4",
"cors": "^2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"fast-csv": "^4.3.6",
"lodash": "^4.17.21",
"mongoose": "^6.0.12",
"multer": "^1.4.3",
"swagger-ui-express": "4.1.6",
"winston": "3.3.3",
"winston-transport": "4.4.0"
},
"devDependencies": {
"@types/compression": "1.7.0",
"@types/express": "4.17.11",
"@types/hapi__joi": "17.1.6",
"@types/jest": "26.0.22",
"@types/multer": "^1.4.7",
"@types/node": "14.14.37",
"@types/supertest": "2.0.11",
"@types/swagger-ui-express": "4.1.2",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"eslint": "7.23.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"jest-express": "1.12.0",
"mongodb-memory-server": "^6.9.6",
"nodemon": "2.0.7",
"supertest": "6.1.3",
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"typescript": "4.2.3"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fadinasr/aleno_pricing/issues"
},
"homepage": "https://github.com/fadinasr/aleno_pricing#readme"
}