-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
118 lines (118 loc) · 3.79 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "server",
"version": "1.0.0",
"description": "ERP building for cooperatives",
"author": "Fairness",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"_esbuild": "esbuild src/assets/main.js --bundle --splitting --outdir=dist/public --format=esm",
"assets:build": "npm run _esbuild -- --minify",
"assets:watch": "npm run _esbuild -- --watch",
"format": "prettier --write \"src/**/*.ts\" \"src/assets/**/*\" \"e2e/**/*.js\"",
"start": "node dist/src/main",
"start:dev": "nest start --preserveWatchOutput --watch --debug",
"lint": "prettier --check \"src/**/*.ts\" \"src/assets/**/*\" \"e2e/**/*.js\" && eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage",
"typeorm": "typeorm-ts-node-commonjs",
"migration:create": "npm run typeorm -- migration:create",
"migration:generate": "npm run typeorm -- migration:generate -d src/datasource.ts",
"migration:migrate": "npm run typeorm -- migration:run -d src/datasource.ts",
"migration:drop": "npm run typeorm -- schema:drop",
"seed:config": "typeorm-seeding config -r ./dist -c src/seeding.js",
"seed:run": "typeorm-seeding seed -r ./dist -c src/seeding.js",
"scalingo-postbuild": "make scalingo-postbuild"
},
"dependencies": {
"@concepta/typeorm-seeding": "^4.0.0-beta.0",
"@faker-js/faker": "^7.6.0",
"@fluent/bundle": "^0.18.0",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^9.2.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.2.0",
"@nestjs/cqrs": "^9.0.1",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.2.0",
"@nestjs/swagger": "^6.1.3",
"@nestjs/typeorm": "^9.0.1",
"argon2": "^0.26.2",
"axios": "^1.7.2",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"connect-typeorm": "^2.0.0",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"date-fns": "^2.8.1",
"express-session": "^1.17.3",
"helmet": "^3.22.0",
"lodash": ">=4.17.19",
"nunjucks": "^3.2.4",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"pg": "^8.2.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"shortid": "^2.2.15",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.3.14",
"typescript": "^4.9.3"
},
"devDependencies": {
"@event-calendar/core": "^2.3.3",
"@event-calendar/day-grid": "^2.3.3",
"@event-calendar/interaction": "^2.3.3",
"@nestjs/cli": "^9.3.0",
"@nestjs/schematics": "^9.0.3",
"@nestjs/testing": "^9.2.0",
"@playwright/test": "^1.38.0",
"@types/express": "^4.17.3",
"@types/express-session": "^1.17.7",
"@types/jest": "^29.5.5",
"@types/node": "^13.9.1",
"@types/nunjucks": "^3.2.3",
"@types/passport-http-bearer": "^1.0.35",
"@types/passport-local": "^1.0.35",
"@types/supertest": "^2.0.8",
"@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"esbuild": "^0.19.3",
"eslint": "7.24.0",
"eslint-config-prettier": "8.2.0",
"eslint-plugin-import": "2.22.1",
"highlight.js": ">=10.4.1",
"jest": "^29.3.1",
"minimist": ">=1.2.6",
"prettier": "^1.18.2",
"serialize-javascript": ">=3.1.0",
"supertest": "^4.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"ts-mockito": "^2.5.0",
"tsconfig-paths": "^3.10.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"rootDir": ".",
"modulePaths": [
"<rootDir>/"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
},
"engines": {
"node": "16"
}
}