-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
78 lines (78 loc) · 2.57 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
75
76
77
78
{
"name": "nestjs-nuxt-starter",
"version": "0.0.3",
"description": "A nest nuxt starter",
"author": "Goopil <[email protected]>",
"license": "MIT",
"private": true,
"main": "dist/server/main.js",
"scripts": {
"prebuild": "rimraf dist",
"predev": "rimraf dist",
"build:front": "cross-env NODE_ENV=production nuxt build -c server/nuxt/nuxt.config.ts",
"build:back": "cross-env mode=production NODE_ENV=production nest build --webpack --webpackPath webpack.config.js",
"build": "concurrently \"yarn build:back\" \"yarn build:front\"",
"dev": "cross-env NODE_ENV=development nest build --webpack --webpackPath webpack.config.js --watch",
"start": "node dist/server/main",
"lint": "eslint \"{common,test,server,client}/**/*.{js,ts,vue}\"",
"format": "yarn run lint --fix",
"test": "jest --config test/jest.config.js --passWithNoTests",
"test:watch": "yarn test --watch",
"test:cov": "yarn test --coverage",
"e2e": "jest --config ./test/jest-e2e.config.js --passWithNoTests",
"e2e:watch": "yarn e2e --watch",
"e2e:cov": "yarn e2e --coverage",
"audit:fix": "npx yarn-audit-fix"
},
"dependencies": {
"@nestjs/common": "8.4.7",
"@nestjs/core": "8.4.7",
"@nestjs/platform-express": "8.4.7",
"@nestjs/platform-fastify": "8.4.7",
"@nuxtjs/axios": "5.13.6",
"nuxt": "2.15.8",
"nuxt-precompress": "0.5.9",
"nuxt-property-decorator": "2.9.1",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.5",
"tslib": "2.4.0"
},
"devDependencies": {
"@nestjs/cli": "8.2.8",
"@nestjs/schematics": "8.0.11",
"@nestjs/testing": "8.4.7",
"@nuxt/types": "2.15.8",
"@nuxt/typescript-build": "2.1.0",
"@types/connect": "3.4.35",
"@types/express": "4.17.13",
"@types/jest": "28.1.4",
"@types/node": "18.0.0",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"clean-webpack-plugin": "4.0.0",
"concurrently": "7.2.2",
"cross-env": "7.0.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.1.1",
"jest": "28.1.2",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"run-script-webpack-plugin": "0.0.11",
"sass": "1.53.0",
"supertest": "6.2.4",
"ts-jest": "28.0.5",
"ts-loader": "8.3.0",
"typescript": "4.7.4",
"webpack": "4.46.0",
"webpack-cli": "4.10.0",
"webpack-node-externals": "3.0.0"
},
"resolutions": {
"ansi-html": ">=0.0.8",
"parse-url": "8.1.0",
"terser": "4.8.1"
}
}