-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
{
"name": "@gzipr/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"test": "yarn test:core && yarn test:gzipr && yarn test:e2e",
"test:e2e": "nx run gzipr-e2e:e2e",
"serve:dev": "nx run gzipr:serve:development",
"serve:prod": "nx run gzipr:serve:production",
"test:core": "nx run core:test",
"test:gzipr": "nx run gzipr:test",
"build": "yarn build:production",
"build:development": "yarn nx run gzipr:build:development",
"build:production": "yarn nx run gzipr:build:production"
},
"private": true,
"dependencies": {
"busboy": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "~4.18.1",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"pm2": "^5.3.0",
"sanitize-filename": "^1.6.3",
"tslib": "^2.3.0"
},
"devDependencies": {
"@nx/esbuild": "16.5.3",
"@nx/eslint-plugin": "16.5.3",
"@nx/jest": "16.5.3",
"@nx/js": "16.5.3",
"@nx/linter": "16.5.3",
"@nx/node": "16.5.3",
"@nx/webpack": "^16.5.5",
"@nx/workspace": "16.5.3",
"@types/busboy": "^1.5.0",
"@types/cors": "^2.8.13",
"@types/express": "~4.17.13",
"@types/hpp": "^0.2.2",
"@types/jest": "^29.4.0",
"@types/js-yaml": "^4.0.5",
"@types/mock-fs": "^4.13.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "~18.7.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"axios": "^1.6.0",
"esbuild": "^0.17.17",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"form-data": "^4.0.0",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"mock-fs": "^5.2.0",
"nodemon": "^3.0.1",
"nx": "16.5.3",
"prettier": "^2.6.2",
"tmp-promise": "^3.0.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "~5.1.3",
"winston": "^3.10.0"
}
}