-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "@aethodia/backend",
"version": "0.0.0",
"license": "SEE LICENSE IN ../COPYRIGHT.TXT",
"description": "The backend for the national website of the Technocratic Republic of Aethodia",
"keywords": [
"micronation",
"Aethodia",
"website"
],
"homepage": "https://aethodia.org",
"bugs": "https://GitHub.com/AethodiaGov/Website/issues",
"repository": {
"type": "git",
"url": "https://GitHub.com/AethodiaGov/Website"
},
"private": true,
"directories": {
"bin": "./dist",
"lib": "./src",
"test": "./test"
},
"type": "commonjs",
"main": "./src/main.ts",
"scripts": {
"//postinstall": "npm rebuild && npm dedupe",
"postinstall": "npm dedupe",
"relock": "rm -rf node_modules && rm -f npm-shrinkwrap.json && npm install && npm shrinkwrap",
"format": "npx prettier --write \"**/*.{js,ts}\"",
"lint": "npx eslint \"**/*.{js,ts}\"",
"lintfix": "npx eslint \"**/*.{js,ts}\" --fix",
"prebuild": "npx rimraf dist",
"build": "npx nest build",
"start:prod": "node dist/main",
"start": "npx nest start --watch",
"start:debug": "npx nest start --watch --debug"
},
"engines": {
"node": "^14",
"npm": "^7"
},
"dependencies": {
"@nestjs/common": "^7",
"@nestjs/core": "^7",
"@nestjs/platform-fastify": "^7",
"point-of-view": "^4",
"reflect-metadata": "~0.1",
"rimraf": "^3",
"rxjs": "^6"
},
"devDependencies": {
"@nestjs/cli": "^7",
"@nestjs/schematics": "^7",
"@types/node": "^14",
"@typescript-eslint/eslint-plugin": "^2",
"@typescript-eslint/parser": "^2",
"eslint": "^6",
"prettier": "^2",
"ts-loader": "^9",
"ts-node": "^9",
"tsconfig-paths": "^3",
"typescript": "^4"
}
}