-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.65 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
{
"name": "nuxtjs-nestjs-starter",
"version": "1.0.0",
"description": "Starter project for nuxtjs and nestjs integrated.",
"author": "ColonelBundy",
"private": true,
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"start": "cross-env NODE_ENV=production node dist/server/main.js",
"start:dev": "cross-env NODE_ENV=development webpack --config webpack.config.js",
"build": "cross-env NODE_ENV=production npm run clean && nuxt-ts build && tsc",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lintfix": "tslint -p tsconfig.json --fix",
"clean": "rimraf dist"
},
"dependencies": {
"@nestjs/common": "^5.7.4",
"@nestjs/core": "^5.7.4",
"@nestjs/microservices": "^5.7.4",
"@nestjs/websockets": "^5.7.4",
"@nuxtjs/axios": "^5.4.1",
"cross-env": "^5.2.0",
"nuxt": "^2.4.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"rxjs": "^6.3.3",
"ts-loader": "^5.3.3",
"vuetify": "^1.5.6",
"vuetify-loader": "^1.2.1",
"vuex-class": "^0.3.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@nuxt/config": "^2.4.5",
"@types/node": "^10.14.0",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"nuxt-property-decorator": "^2.1.3",
"nuxt-ts": "^2.4.5",
"prettier": "^1.15.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.4",
"vuex-class-component": "^1.4.3",
"webpack-cli": "^3.2.3",
"webpack-shell-plugin": "^0.5.0"
}
}