-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
109 lines (109 loc) · 3.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
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
{
"name": "nestjs-admin",
"version": "0.4.1",
"license": "MIT",
"author": "William Duclot",
"repository": {
"type": "git",
"url": "https://github.com/Theodo-UK/nestjs-admin"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": "dist/bin/cli.js",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write \"**/*.{ts,js,yml,njk,json}\"",
"start:dev": "tsc-watch --onSuccess \"ln -sfn ../../src/public dist/src/public\" --onFailure \"echo 'There was a problem compiling'\"",
"prepublishOnly": "yarn build",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"postbuild": "cp -r src/public dist/src/public",
"jest": ". ./.env.test && node_modules/.bin/jest",
"test:unit": "yarn jest --maxWorkers=4",
"test:lint": "tslint -p tsconfig.json -c tslint.json",
"test:type": "tsc --noEmit",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest",
"test:schema:sync": ". ./.env.test && ts-node node_modules/.bin/typeorm schema:sync",
"test:schema:drop": ". ./.env.test && ts-node node_modules/.bin/typeorm schema:drop",
"test": "yarn test:lint && yarn test:type && yarn test:unit"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"@nestjs/platform-express": "^6.0.0",
"@nestjs/typeorm": "^6.0.0",
"typeorm": "^0.2.12"
},
"dependencies": {
"@nestjs/passport": "^7.1.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.3.1",
"commander": "^6.0.0",
"connect-flash": "^0.1.1",
"express-session": "^1.16.2",
"inquirer": "^7.0.0",
"lodash": "^4.17.15",
"nunjucks": "^3.2.0",
"nunjucks-date-filter": "^0.1.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@nestjs/cli": "^7.4.1",
"@nestjs/common": "^7.4.2",
"@nestjs/core": "^7.4.2",
"@nestjs/platform-express": "^7.4.2",
"@nestjs/testing": "^7.4.2",
"@nestjs/typeorm": "^7.1.0",
"@types/bcryptjs": "^2.4.2",
"@types/connect-flash": "^0.0.35",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.14",
"@types/faker": "^4.1.5",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.10",
"@types/jsdom": "^16.2.3",
"@types/lodash": "^4.14.139",
"@types/node": "^14.6.0",
"@types/nunjucks": "^3.1.1",
"@types/passport": "^1.0.1",
"@types/passport-local": "^1.0.33",
"@types/supertest": "^2.0.8",
"dotenv-safe": "^8.1.0",
"faker": "^4.1.0",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"jsdom": "^16.4.0",
"mysql": "^2.17.1",
"pg": "^8.3.2",
"prettier": "^2.1.2",
"prettier-plugin-twig-melody": "^0.4.6",
"reflect-metadata": "^0.1.12",
"rimraf": "^3.0.0",
"rxjs": "^6.0.0",
"supertest": "^4.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"tsc-watch": "^4.2.9",
"tslint": "^6.1.3",
"typeorm": "^0.2.19",
"typescript": "^4.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": "(src|test)/.*.(spec|test|int).ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"exampleApp/"
]
}
}