-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.8 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.8 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "doctopdf",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "GPL-3.0-or-later",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -b",
"build:client": "rimraf public && webpack --mode=production && cp ./src/client/index.html ./public && cp -R ./src/client/images/ ./public/images",
"build:client:dev": "webpack --watch --mode=development",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "NODE_ICU_DATA=node_modules/full-icu nest start",
"start:dev": "NODE_ICU_DATA=node_modules/full-icu nest start --watch",
"start:debug": "NODE_ICU_DATA=node_modules/full-icu nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test:client": "jest --config jest.client.config.js",
"test:client:watch": "jest --config jest.client.config.js --watch ",
"test:client:cov": "jest --coverage --config jest.client.config.js",
"test:client:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --config jest.client.config.js --runInBand",
"test:server": "NODE_ICU_DATA=node_modules/full-icu jest",
"test:server:watch": "NODE_ICU_DATA=node_modules/full-icu jest --watch",
"test:server:cov": "NODE_ICU_DATA=node_modules/full-icu jest --coverage",
"test:server:debug": "NODE_ICU_DATA=node_modules/full-icu node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:server:e2e": "NODE_ICU_DATA=node_modules/full-icu jest --config ./src/server/test/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^7.3.2",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^7.3.2",
"@nestjs/platform-express": "^7.3.2",
"@nestjs/swagger": "^4.5.12",
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^10.4.7",
"axios": "^0.19.2",
"express-react-views": "^0.11.0",
"form-data": "^3.0.0",
"full-icu": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"libxmljs": "^0.19.7",
"puppeteer": "^4.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.0",
"swagger-ui-express": "^4.1.4",
"xsd-schema-validator": "^0.6.0"
},
"devDependencies": {
"@nestjs/cli": "^7.4.1",
"@nestjs/schematics": "^7.0.1",
"@nestjs/testing": "^7.3.2",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.4",
"@types/node": "^13.13.14",
"@types/pdfkit": "^0.10.6",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"autoprefixer": "^9.8.5",
"css-loader": "^3.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.1.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-csso": "^4.0.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-media-minmax": "^4.0.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1",
"supertest": "^4.0.2",
"ts-jest": "^26.1.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}