-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "sudoku",
"version": "1.0.0",
"description": "Sudoku",
"scripts": {
"start": "node ./dist/Main.js",
"start:local": "npm run copy:local-env && cd ./dist && node -r dotenv/config Main.js",
"copy:local-env": "cp ./env/local.env ./dist/.env",
"build": "./scripts/build.sh",
"lib:check": "ncu",
"lib:upgrade": "ncu -u && npm install",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"author": "https://github.com/pvarentsov",
"license": "MIT",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/socket.io": "3.0.1",
"@types/uuid": "8.3.1",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"eslint": "7.32.0",
"npm-check-updates": "11.8.5",
"typescript": "4.4.4"
},
"dependencies": {
"@nestjs/common": "8.1.1",
"@nestjs/core": "8.1.1",
"@nestjs/platform-express": "8.1.1",
"@nestjs/platform-socket.io": "8.1.1",
"@nestjs/serve-static": "2.2.2",
"@nestjs/websockets": "8.1.1",
"class-transformer": "0.4.0",
"class-validator": "0.13.1",
"dotenv": "10.0.0",
"env-var": "7.0.1",
"express": "4.17.1",
"module-alias": "2.2.2",
"reflect-metadata": "0.1.13",
"rxjs": "7.4.0",
"uuid": "8.3.2"
},
"_moduleAliases": {
"@sudoku/core": "core",
"@sudoku/adapter": "adapter",
"@sudoku/app": "app"
}
}