This repository has been archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 2.2 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
{
"name": "sr2020-nodejs",
"version": "1.0.2",
"description": "Monorepo for SR2020 parts written in NodeJS",
"scripts": {
"nx": "nx",
"affected_apps": "nx affected:apps --plain --base=origin/master~1 --head=origin/master",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"clean": "find . -type f ( -name *.js -or -name *.map -or -name *.d.ts -or -name *.tsbuildinfo ) -not -path '*node_modules*' -print -delete",
"build:watch": "tsc -b --watch",
"presubmit": "nx affected:lint && nx affected:build && nx affected:test"
},
"repository": {
"type": "git"
},
"private": true,
"workspaces": [
"packages/*"
],
"license": "Apache-2.0",
"dependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/serve-static": "^2.1.4",
"@nestjs/swagger": "^4.7.5",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"dotenv": "^8.0.0",
"moment": "^2.24.0",
"reflect-metadata": "^0.1.13",
"sql.js": "^1.4.0",
"supertest": "^6.0.1",
"swagger-ui-express": "^4.1.5",
"tslib": "^2.0.0",
"typeorm": "^0.2.18",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-typescript": "7.9.0",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.0",
"@nrwl/cli": "10.4.4",
"@nrwl/eslint-plugin-nx": "10.4.4",
"@nrwl/jest": "^10.4.4",
"@nrwl/nest": "^10.4.4",
"@nrwl/node": "10.4.4",
"@nrwl/tao": "10.4.4",
"@nrwl/web": "10.4.4",
"@nrwl/workspace": "10.4.4",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.16",
"@types/node": "^14.6.4",
"@types/webpack-env": "^1.16.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"babel-jest": "^26.6.3",
"eslint": "7.10.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-plugin": "^2.2.1",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"prettier": "2.1.2",
"ts-jest": "^26.4.4",
"ts-node": "^8.3.0",
"typescript": "~4.0.3"
}
}