-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.13 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
{
"name": "adventurio",
"version": "1.0.0",
"description": "Starter project for nuxtjs and nestjs integrated.",
"author": "Daniel Weber",
"private": false,
"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",
"storybook": "start-storybook",
"deploy:storybook:now": "build-storybook -c .storybook -o public && now --prod ./public",
"build:prod": "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",
"css-loader": "^3.4.2",
"nuxt": "^2.10.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"rxjs": "^6.3.3",
"ts-loader": "^5.3.3",
"vue": "^2.6.11",
"vue-meta": "^1.5.8",
"vue-styled-components": "^1.4.14",
"vuetify": "^1.5.6",
"vuetify-loader": "^1.2.1",
"vuex-class": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@nuxt/config": "^2.4.5",
"@storybook/vue": "^5.3.9",
"@types/node": "^10.14.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"jest": "^23.6.0",
"node-sass": "^4.13.1",
"nodemon": "^1.18.9",
"nuxt-property-decorator": "^2.1.3",
"nuxt-ts": "^2.4.5",
"prettier": "^1.15.3",
"sass-loader": "^8.0.2",
"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",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11",
"vuex-class-component": "^1.4.3",
"webpack-cli": "^3.2.3",
"webpack-shell-plugin": "^0.5.0"
}
}